♻️ refactor(nvim): use LazyVim global function instead of importing the util module of lazyvim
This commit is contained in:
parent
cf71f2e44e
commit
1a8fe9fdd6
21 changed files with 51 additions and 54 deletions
|
@ -1,7 +1,6 @@
|
||||||
local map = vim.keymap.set
|
local map = vim.keymap.set
|
||||||
local o = vim.opt
|
local o = vim.opt
|
||||||
|
|
||||||
local Util = require("lazyvim.util")
|
|
||||||
local lazy = require("lazy")
|
local lazy = require("lazy")
|
||||||
|
|
||||||
-- Search current word
|
-- Search current word
|
||||||
|
@ -17,7 +16,7 @@ map("n", "<leader>ll", "<cmd>Lazy<cr>", { desc = "Lazy" })
|
||||||
map("n", "<leader>ld", function() vim.fn.system({ "xdg-open", "https://lazyvim.org" }) end, { desc = "LazyVim Docs" })
|
map("n", "<leader>ld", function() vim.fn.system({ "xdg-open", "https://lazyvim.org" }) end, { desc = "LazyVim Docs" })
|
||||||
map("n", "<leader>lr", function() vim.fn.system({ "xdg-open", "https://github.com/LazyVim/LazyVim" }) end, { desc = "LazyVim Repo" })
|
map("n", "<leader>lr", function() vim.fn.system({ "xdg-open", "https://github.com/LazyVim/LazyVim" }) end, { desc = "LazyVim Repo" })
|
||||||
map("n", "<leader>lx", "<cmd>LazyExtras<cr>", { desc = "Extras" })
|
map("n", "<leader>lx", "<cmd>LazyExtras<cr>", { desc = "Extras" })
|
||||||
map("n", "<leader>lc", function() Util.news.changelog() end, { desc = "LazyVim Changelog" })
|
map("n", "<leader>lc", function() LazyVim.news.changelog() end, { desc = "LazyVim Changelog" })
|
||||||
|
|
||||||
map("n", "<leader>lu", function() lazy.update() end, { desc = "Lazy Update" })
|
map("n", "<leader>lu", function() lazy.update() end, { desc = "Lazy Update" })
|
||||||
map("n", "<leader>lC", function() lazy.check() end, { desc = "Lazy Check" })
|
map("n", "<leader>lC", function() lazy.check() end, { desc = "Lazy Check" })
|
||||||
|
@ -157,9 +156,9 @@ map("x", "#", [[y?\V<C-R>=escape(@", '?\')<CR><CR>]])
|
||||||
|
|
||||||
-- Dashboard
|
-- Dashboard
|
||||||
map("n", "<leader>fd", function()
|
map("n", "<leader>fd", function()
|
||||||
if Util.has("alpha-nvim") then
|
if LazyVim.has("alpha-nvim") then
|
||||||
require("alpha").start(true)
|
require("alpha").start(true)
|
||||||
elseif Util.has("dashboard-nvim") then
|
elseif LazyVim.has("dashboard-nvim") then
|
||||||
vim.cmd("Dashboard")
|
vim.cmd("Dashboard")
|
||||||
end
|
end
|
||||||
end, { desc = "Dashboard" })
|
end, { desc = "Dashboard" })
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
{
|
{
|
||||||
"Weissle/persistent-breakpoints.nvim",
|
"Weissle/persistent-breakpoints.nvim",
|
||||||
cond = require("lazyvim.util").has("nvim-dap"),
|
cond = LazyVim.has("nvim-dap"),
|
||||||
event = "LazyFile",
|
event = "LazyFile",
|
||||||
keys = {
|
keys = {
|
||||||
{ "<leader>dbd", "<cmd>PBClearAllBreakpoints<cr>", desc = "Delete All Breakpoints" },
|
{ "<leader>dbd", "<cmd>PBClearAllBreakpoints<cr>", desc = "Delete All Breakpoints" },
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
return {
|
return {
|
||||||
"nvim-telescope/telescope-dap.nvim",
|
"nvim-telescope/telescope-dap.nvim",
|
||||||
cond = require("lazyvim.util").has("nvim-dap"),
|
cond = LazyVim.has("nvim-dap"),
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("dap")
|
require("telescope").load_extension("dap")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -3,7 +3,7 @@ return {
|
||||||
"ThePrimeagen/git-worktree.nvim",
|
"ThePrimeagen/git-worktree.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("git_worktree")
|
require("telescope").load_extension("git_worktree")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -28,7 +28,7 @@ return {
|
||||||
keys = keys,
|
keys = keys,
|
||||||
config = function()
|
config = function()
|
||||||
require("grapple").setup()
|
require("grapple").setup()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("grapple")
|
require("telescope").load_extension("grapple")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -46,7 +46,7 @@ return {
|
||||||
end,
|
end,
|
||||||
})
|
})
|
||||||
|
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("harpoon")
|
require("telescope").load_extension("harpoon")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -52,7 +52,7 @@ return {
|
||||||
},
|
},
|
||||||
config = function(_, opts)
|
config = function(_, opts)
|
||||||
require("rest-nvim").setup(opts)
|
require("rest-nvim").setup(opts)
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("rest")
|
require("telescope").load_extension("rest")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
"nvim-telescope/telescope-file-browser.nvim",
|
"nvim-telescope/telescope-file-browser.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").setup({
|
require("telescope").setup({
|
||||||
extensions = {
|
extensions = {
|
||||||
file_browser = {
|
file_browser = {
|
||||||
|
|
|
@ -2,7 +2,7 @@ return {
|
||||||
"piersolenski/telescope-import.nvim",
|
"piersolenski/telescope-import.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").setup({
|
require("telescope").setup({
|
||||||
extensions = {
|
extensions = {
|
||||||
import = {
|
import = {
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
"tsakirist/telescope-lazy.nvim",
|
"tsakirist/telescope-lazy.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("lazy")
|
require("telescope").load_extension("lazy")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
"nvim-telescope/telescope-live-grep-args.nvim",
|
"nvim-telescope/telescope-live-grep-args.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("lazy")
|
require("telescope").load_extension("lazy")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
"benfowler/telescope-luasnip.nvim",
|
"benfowler/telescope-luasnip.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("luasnip")
|
require("telescope").load_extension("luasnip")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
return {
|
return {
|
||||||
"dharmx/telescope-media.nvim",
|
"dharmx/telescope-media.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").setup({
|
require("telescope").setup({
|
||||||
extensions = {
|
extensions = {
|
||||||
media = {
|
media = {
|
||||||
|
|
|
@ -15,7 +15,7 @@ return {
|
||||||
},
|
},
|
||||||
opts = {},
|
opts = {},
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").setup({
|
require("telescope").setup({
|
||||||
extensions = {
|
extensions = {
|
||||||
repo = {
|
repo = {
|
||||||
|
|
|
@ -3,7 +3,7 @@ return {
|
||||||
"debugloop/telescope-undo.nvim",
|
"debugloop/telescope-undo.nvim",
|
||||||
opts = {},
|
opts = {},
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").setup({
|
require("telescope").setup({
|
||||||
extensions = {
|
extensions = {
|
||||||
undo = {
|
undo = {
|
||||||
|
|
|
@ -18,7 +18,7 @@ return {
|
||||||
open = { "Telescope find_files" },
|
open = { "Telescope find_files" },
|
||||||
},
|
},
|
||||||
})
|
})
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("workspaces")
|
require("telescope").load_extension("workspaces")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -2,7 +2,7 @@ return {
|
||||||
{
|
{
|
||||||
"jvgrootveld/telescope-zoxide",
|
"jvgrootveld/telescope-zoxide",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").setup({
|
require("telescope").setup({
|
||||||
extensions = {
|
extensions = {
|
||||||
zoxide = {
|
zoxide = {
|
||||||
|
|
|
@ -27,7 +27,7 @@ return {
|
||||||
{
|
{
|
||||||
"dawsers/telescope-floaterm.nvim",
|
"dawsers/telescope-floaterm.nvim",
|
||||||
config = function()
|
config = function()
|
||||||
require("lazyvim.util").on_load("telescope.nvim", function()
|
LazyVim.on_load("telescope.nvim", function()
|
||||||
require("telescope").load_extension("floaterm")
|
require("telescope").load_extension("floaterm")
|
||||||
end)
|
end)
|
||||||
end,
|
end,
|
||||||
|
|
|
@ -33,7 +33,7 @@ return {
|
||||||
|
|
||||||
opts.sections.lualine_a = { { "mode", icon = "" } }
|
opts.sections.lualine_a = { { "mode", icon = "" } }
|
||||||
opts.sections.lualine_c[4] = {
|
opts.sections.lualine_c[4] = {
|
||||||
require("lazyvim.util.lualine").pretty_path({
|
LazyVim.lualine.pretty_path({
|
||||||
filename_hl = "Bold",
|
filename_hl = "Bold",
|
||||||
modified_hl = "MatchParen",
|
modified_hl = "MatchParen",
|
||||||
directory_hl = "Conceal",
|
directory_hl = "Conceal",
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
local Util = require("lazyvim.util")
|
|
||||||
local actions = require("telescope.actions")
|
local actions = require("telescope.actions")
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
@ -8,39 +7,39 @@ return {
|
||||||
keys = {
|
keys = {
|
||||||
{
|
{
|
||||||
"<leader>ssa",
|
"<leader>ssa",
|
||||||
Util.telescope("lsp_document_symbols", { symbols = { "Class", "Function", "Method", "Constructor", "Interface", "Module", "Struct", "Trait", "Field", "Property", "Enum", "Constant" } }),
|
LazyVim.telescope("lsp_document_symbols", { symbols = { "Class", "Function", "Method", "Constructor", "Interface", "Module", "Struct", "Trait", "Field", "Property", "Enum", "Constant" } }),
|
||||||
desc = "All",
|
desc = "All",
|
||||||
},
|
},
|
||||||
{ "<leader>ssc", Util.telescope("lsp_document_symbols", { symbols = { "Class" } }), desc = "Class" },
|
{ "<leader>ssc", LazyVim.telescope("lsp_document_symbols", { symbols = { "Class" } }), desc = "Class" },
|
||||||
{ "<leader>ssf", Util.telescope("lsp_document_symbols", { symbols = { "Function" } }), desc = "Function" },
|
{ "<leader>ssf", LazyVim.telescope("lsp_document_symbols", { symbols = { "Function" } }), desc = "Function" },
|
||||||
{ "<leader>ssm", Util.telescope("lsp_document_symbols", { symbols = { "Method" } }), desc = "Method" },
|
{ "<leader>ssm", LazyVim.telescope("lsp_document_symbols", { symbols = { "Method" } }), desc = "Method" },
|
||||||
{ "<leader>ssC", Util.telescope("lsp_document_symbols", { symbols = { "Constructor" } }), desc = "Constructor" },
|
{ "<leader>ssC", LazyVim.telescope("lsp_document_symbols", { symbols = { "Constructor" } }), desc = "Constructor" },
|
||||||
{ "<leader>sse", Util.telescope("lsp_document_symbols", { symbols = { "Enum" } }), desc = "Enum" },
|
{ "<leader>sse", LazyVim.telescope("lsp_document_symbols", { symbols = { "Enum" } }), desc = "Enum" },
|
||||||
{ "<leader>ssi", Util.telescope("lsp_document_symbols", { symbols = { "Interface" } }), desc = "Interface" },
|
{ "<leader>ssi", LazyVim.telescope("lsp_document_symbols", { symbols = { "Interface" } }), desc = "Interface" },
|
||||||
{ "<leader>ssM", Util.telescope("lsp_document_symbols", { symbols = { "Module" } }), desc = "Module" },
|
{ "<leader>ssM", LazyVim.telescope("lsp_document_symbols", { symbols = { "Module" } }), desc = "Module" },
|
||||||
{ "<leader>sss", Util.telescope("lsp_document_symbols", { symbols = { "Struct" } }), desc = "Struct" },
|
{ "<leader>sss", LazyVim.telescope("lsp_document_symbols", { symbols = { "Struct" } }), desc = "Struct" },
|
||||||
{ "<leader>sst", Util.telescope("lsp_document_symbols", { symbols = { "Trait" } }), desc = "Trait" },
|
{ "<leader>sst", LazyVim.telescope("lsp_document_symbols", { symbols = { "Trait" } }), desc = "Trait" },
|
||||||
{ "<leader>ssF", Util.telescope("lsp_document_symbols", { symbols = { "Field" } }), desc = "Field" },
|
{ "<leader>ssF", LazyVim.telescope("lsp_document_symbols", { symbols = { "Field" } }), desc = "Field" },
|
||||||
{ "<leader>ssp", Util.telescope("lsp_document_symbols", { symbols = { "Property" } }), desc = "Property" },
|
{ "<leader>ssp", LazyVim.telescope("lsp_document_symbols", { symbols = { "Property" } }), desc = "Property" },
|
||||||
{ "<leader>ssv", Util.telescope("lsp_document_symbols", { symbols = { "Variable", "Parameter" } }), desc = "Variable" },
|
{ "<leader>ssv", LazyVim.telescope("lsp_document_symbols", { symbols = { "Variable", "Parameter" } }), desc = "Variable" },
|
||||||
{
|
{
|
||||||
"<leader>sSa",
|
"<leader>sSa",
|
||||||
Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Class", "Function", "Method", "Constructor", "Interface", "Module", "Struct", "Trait", "Field", "Property", "Enum", "Constant" } }),
|
LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Class", "Function", "Method", "Constructor", "Interface", "Module", "Struct", "Trait", "Field", "Property", "Enum", "Constant" } }),
|
||||||
desc = "All",
|
desc = "All",
|
||||||
},
|
},
|
||||||
{ "<leader>sSc", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Class" } }), desc = "Class" },
|
{ "<leader>sSc", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Class" } }), desc = "Class" },
|
||||||
{ "<leader>sSf", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Function" } }), desc = "Function" },
|
{ "<leader>sSf", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Function" } }), desc = "Function" },
|
||||||
{ "<leader>sSm", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Method" } }), desc = "Method" },
|
{ "<leader>sSm", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Method" } }), desc = "Method" },
|
||||||
{ "<leader>sSC", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Constructor" } }), desc = "Constructor" },
|
{ "<leader>sSC", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Constructor" } }), desc = "Constructor" },
|
||||||
{ "<leader>sSe", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Enum" } }), desc = "Enum" },
|
{ "<leader>sSe", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Enum" } }), desc = "Enum" },
|
||||||
{ "<leader>sSi", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Interface" } }), desc = "Interface" },
|
{ "<leader>sSi", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Interface" } }), desc = "Interface" },
|
||||||
{ "<leader>sSM", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Module" } }), desc = "Module" },
|
{ "<leader>sSM", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Module" } }), desc = "Module" },
|
||||||
{ "<leader>sSs", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Struct" } }), desc = "Struct" },
|
{ "<leader>sSs", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Struct" } }), desc = "Struct" },
|
||||||
{ "<leader>sSt", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Trait" } }), desc = "Trait" },
|
{ "<leader>sSt", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Trait" } }), desc = "Trait" },
|
||||||
{ "<leader>sSF", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Field" } }), desc = "Field" },
|
{ "<leader>sSF", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Field" } }), desc = "Field" },
|
||||||
{ "<leader>sSp", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Property" } }), desc = "Property" },
|
{ "<leader>sSp", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Property" } }), desc = "Property" },
|
||||||
{ "<leader>sSv", Util.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Variable", "Parameter" } }), desc = "Variable" },
|
{ "<leader>sSv", LazyVim.telescope("lsp_dynamic_workspace_symbols", { symbols = { "Variable", "Parameter" } }), desc = "Variable" },
|
||||||
{ "<leader>sA", Util.telescope("treesitter"), desc = "Treesitter Symbols" },
|
{ "<leader>sA", LazyVim.telescope("treesitter"), desc = "Treesitter Symbols" },
|
||||||
{ "<leader>gf", "<cmd>Telescope git_bcommits<cr>", desc = "File History" },
|
{ "<leader>gf", "<cmd>Telescope git_bcommits<cr>", desc = "File History" },
|
||||||
{ "<leader>gS", "<cmd>Telescope git_stash<cr>", desc = "stash" },
|
{ "<leader>gS", "<cmd>Telescope git_stash<cr>", desc = "stash" },
|
||||||
{ "<leader>gb", "<cmd>Telescope git_branches<cr>", desc = "branches" },
|
{ "<leader>gb", "<cmd>Telescope git_branches<cr>", desc = "branches" },
|
||||||
|
|
|
@ -1,4 +1,3 @@
|
||||||
local Util = require("lazyvim.util")
|
|
||||||
local executeCommandIfExists = function(command)
|
local executeCommandIfExists = function(command)
|
||||||
if vim.fn.exists(command) ~= 0 then
|
if vim.fn.exists(command) ~= 0 then
|
||||||
vim.cmd(command)
|
vim.cmd(command)
|
||||||
|
@ -18,7 +17,7 @@ return {
|
||||||
executeCommandIfExists(":LspLensOff")
|
executeCommandIfExists(":LspLensOff")
|
||||||
executeCommandIfExists(":NvimContextVtDisable")
|
executeCommandIfExists(":NvimContextVtDisable")
|
||||||
executeCommandIfExists(":IBLDisable")
|
executeCommandIfExists(":IBLDisable")
|
||||||
Util.toggle.inlay_hints()
|
LazyVim.toggle.inlay_hints()
|
||||||
executeCommandIfExists(":Gitsigns toggle_current_line_blame")
|
executeCommandIfExists(":Gitsigns toggle_current_line_blame")
|
||||||
executeCommandIfExists(":CccHighlighterDisable")
|
executeCommandIfExists(":CccHighlighterDisable")
|
||||||
end,
|
end,
|
||||||
|
@ -29,7 +28,7 @@ return {
|
||||||
executeCommandIfExists(":LspLensOn")
|
executeCommandIfExists(":LspLensOn")
|
||||||
executeCommandIfExists(":NvimContextVtEnable")
|
executeCommandIfExists(":NvimContextVtEnable")
|
||||||
executeCommandIfExists(":IBLEnable")
|
executeCommandIfExists(":IBLEnable")
|
||||||
Util.toggle.inlay_hints()
|
LazyVim.toggle.inlay_hints()
|
||||||
executeCommandIfExists(":Gitsigns toggle_current_line_blame")
|
executeCommandIfExists(":Gitsigns toggle_current_line_blame")
|
||||||
executeCommandIfExists(":CccHighlighterEnable")
|
executeCommandIfExists(":CccHighlighterEnable")
|
||||||
end,
|
end,
|
||||||
|
|
Loading…
Add table
Reference in a new issue