Neovim: update dependencies and make it so pyright does not double-spawn

This commit is contained in:
Tony Blyler 2025-08-22 10:01:20 -04:00
parent 3126226ad4
commit 03db27a639
No known key found for this signature in database
2 changed files with 12 additions and 11 deletions

View file

@ -355,10 +355,11 @@ later(function()
}
})
-- DISABLED due to causing LSPs to double-spawn
-- make sure LSPs are autostarted if already installed at neovim start
for _, server_name in pairs(require('mason-lspconfig').get_installed_servers()) do
require('lspconfig')[server_name].setup({})
end
--for _, server_name in pairs(require('mason-lspconfig').get_installed_servers()) do
-- require('lspconfig')[server_name].setup({})
--end
-- TODO see if there is a way to automatically do this rather than having to manually specify them
local null_ls = require('null-ls')