-
Notifications
You must be signed in to change notification settings - Fork 40.3k
Description
I have a Neovim config build on this kickstart configuration. Since the release of Mason V.2 I had some issues and a long time I have pinned the version to the old v.1.
Because Mason V.2 is more stable lately, I wanted to give it another try. But I noticed that the custom LSP settings as set in local servers = {}
were not loaded.
Because Mason makes use of the Neovim build-in LSP functions, it seems like there should be an additional config for the custom LSP settings. After some trial and error the following is working for me. By adding the following loop after the require('mason-lspconfig').setup {}
:
for name, config in pairs(servers) do
vim.lsp.config(name, config)
end
all custom settings are loaded again using Mason V.2 (for me).
Maybe also require('lspconfig')[server_name].setup(server)
should be replaced by vim.lsp.enable( server_name )
I expect there is a better way to implement this to this repository 🤣