1
0
Fork 0

Fix LSP and update plugins

- Structure LSP configuration code
- Since `lsp-zero` is deprecated, instead use `nvim-lspconfig`
- Use `nvim_lsp_signature_help` instead of `lsp_signature`
This commit is contained in:
Xavier Moffett 2025-04-22 00:01:43 -04:00
parent b25bcaf11a
commit 456046c4a7
Signed by: Sapphirus
GPG key ID: E967DD18119C6EEA
11 changed files with 105 additions and 103 deletions

View file

@ -1,6 +1,6 @@
require'nvim-treesitter.configs'.setup {
-- A list of parser names, or "all" (the five listed parsers should always be installed)
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" , "rust" },
ensure_installed = { "c", "lua", "vim", "vimdoc", "query" , "rust", "python" },
-- Install parsers synchronously (only applied to `ensure_installed`)
sync_install = false,