This commit is contained in:
Tyler Marshall 2025-10-14 15:56:19 +00:00 committed by GitHub
commit 06afb0eead
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 1 deletions

View File

@ -729,7 +729,8 @@ require('lazy').setup({
-- by the server configuration above. Useful when disabling
-- certain features of an LSP (for example, turning off formatting for ts_ls)
server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
require('lspconfig')[server_name].setup(server)
vim.lsp.config(server_name, server)
vim.lsp.enable(server_name)
end,
},
}