update
This commit is contained in:
parent
be12cae2f9
commit
32fda72951
4
init.lua
4
init.lua
@ -3,7 +3,6 @@ G = require('G')
|
||||
local lazypath = G.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
|
||||
if not G.loop.fs_stat(lazypath) then
|
||||
|
||||
G.fn.system({
|
||||
"git",
|
||||
"clone",
|
||||
@ -20,7 +19,6 @@ if not G.loop.fs_stat(lazypath) then
|
||||
"credential.helper",
|
||||
"store",
|
||||
})
|
||||
|
||||
end
|
||||
|
||||
G.opt.rtp:prepend(lazypath)
|
||||
@ -36,5 +34,3 @@ else
|
||||
})
|
||||
end
|
||||
|
||||
|
||||
|
||||
|
@ -34,6 +34,13 @@ return {
|
||||
'github/copilot.vim', -- github copilot
|
||||
},
|
||||
{
|
||||
|
||||
}
|
||||
'windwp/nvim-autopairs',
|
||||
event = "InsertEnter",
|
||||
opts = {},-- this is equalent to setup({}) function
|
||||
config = function ()
|
||||
require('nvim-autopairs').setup({
|
||||
disable_filetype = { "vim" },
|
||||
})
|
||||
end
|
||||
},
|
||||
}
|
||||
|
@ -133,7 +133,7 @@ return {
|
||||
}
|
||||
require("symbols-outline").setup(opts)
|
||||
G.map({
|
||||
{ "n", "<leader>o", ":SymbolsOutline<cr>" },
|
||||
{ "n", "<c-O>", ":SymbolsOutline<cr>" },
|
||||
})
|
||||
end
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user