fix: tsserver -> ts_ls

This commit is contained in:
bumpsoo 2024-11-28 11:27:37 +09:00
parent cec33891b3
commit f09bf576c4

View file

@ -15,7 +15,7 @@ local config = function()
end
-- Enable some language servers with the additional
-- completion capabilities offered by nvim-cmp
local servers = { 'gopls', 'clangd', 'tsserver', 'pyright'}
local servers = { 'gopls', 'clangd', 'ts_ls', 'pyright'}
for _, lsp in ipairs(servers) do
lspconfig[lsp].setup {
on_attach = on_attach,