You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
-- NOTE: fix is found in this issue; https://github.com/nvim-lua/kickstart.nvim/pull/1475/files
752
+
-- Installed LSPs are configured and enabled automatically with mason-lspconfig
753
+
-- The loop below is for overriding the default configuration of LSPs with the ones in the servers table
754
+
forserver_name, configinpairs(servers) do
755
+
vim.lsp.config(server_name, config)
756
+
end
757
+
-- NOTE: Some servers may require an old setup until they are updated. For the full list refer here: https://github.com/neovim/nvim-lspconfig/issues/3705
758
+
-- These servers will have to be manually set up with require("lspconfig").server_name.setup{}
0 commit comments