lsp setup

This commit is contained in:
Daniel B Sherry 2025-05-24 09:04:20 -05:00
parent 5c937dc1c8
commit 5bd1837e7d
18 changed files with 260 additions and 195 deletions

View file

@ -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')