lsp setup
This commit is contained in:
parent
5c937dc1c8
commit
5bd1837e7d
18 changed files with 260 additions and 195 deletions
12
init.lua
12
init.lua
|
|
@ -16,11 +16,10 @@ if not vim.loop.fs_stat(lazypath) then
|
|||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
require('lazy').setup('plugins', {
|
||||
change_detection = {
|
||||
notify = false,
|
||||
},
|
||||
})
|
||||
require('lazy').setup {
|
||||
{ import = 'plugins' },
|
||||
{ import = 'plugins.lsp' },
|
||||
}
|
||||
|
||||
require 'user.options'
|
||||
require 'user.keymaps'
|
||||
|
|
@ -30,3 +29,6 @@ require 'user.autocmds'
|
|||
-- require 'user.lsp'
|
||||
-- require 'user.treesitter'
|
||||
-- require 'user.autopairs'
|
||||
|
||||
vim.lsp.enable('pyright')
|
||||
vim.lsp.enable('lua_ls')
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue