summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYigit Sever2024-10-01 17:38:48 +0200
committerYigit Sever2024-10-01 17:38:48 +0200
commit49290ee59ab142dab5cf89647565da2424ec6832 (patch)
tree70904642129cd72ac1d25ccf1c02d442d3a4999b
parent861f891749d0dd4b8323187488b02a11573ffb0a (diff)
downloaddotfiles-49290ee59ab142dab5cf89647565da2424ec6832.tar.gz
dotfiles-49290ee59ab142dab5cf89647565da2424ec6832.tar.bz2
dotfiles-49290ee59ab142dab5cf89647565da2424ec6832.zip
nvim: update tsserver lsp name
-rw-r--r--.config/nvim/lua/plugins/lsp.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/.config/nvim/lua/plugins/lsp.lua b/.config/nvim/lua/plugins/lsp.lua
index bcec622..88ebd12 100644
--- a/.config/nvim/lua/plugins/lsp.lua
+++ b/.config/nvim/lua/plugins/lsp.lua
@@ -70,7 +70,7 @@ return {
70 70
71 -- misc. 71 -- misc.
72 local lspconfig = require('lspconfig') 72 local lspconfig = require('lspconfig')
73 local servers = { 'tsserver', 'jsonls', 'eslint', 'cssls', 'html' } 73 local servers = { 'ts_ls', 'jsonls', 'eslint', 'cssls', 'html', 'vala_ls' }
74 for _, lsp in pairs(servers) do 74 for _, lsp in pairs(servers) do
75 lspconfig[lsp].setup { 75 lspconfig[lsp].setup {
76 on_attach = on_attach, 76 on_attach = on_attach,