add proper lsp support for nvim

This commit is contained in:
insects 2025-04-10 16:06:44 +02:00
parent 5f9abcb29a
commit 4e1fba9299
3 changed files with 72 additions and 3 deletions

View file

@ -1,7 +1,14 @@
-- Telescope, and other file picker-related plugins
return {
"nvim-telescope/telescope.nvim",
{
"nvim-telescope/telescope.nvim",
config = function()
local telescope = require("telescope")
telescope.setup()
telescope.load_extension("chezmoi")
end
},
{
"xvzc/chezmoi.nvim",
config = function()
@ -19,5 +26,5 @@ return {
})
}
end
}
},
}