Skip to content

Commit 5e8ed0a

Browse files
authored
Merge pull request #13 from nvim-lua/master
feat: update references of tsserver to ts_ls (nvim-lua#1131)
2 parents 9f8c980 + 7201dc4 commit 5e8ed0a

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

init.lua

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -614,8 +614,8 @@ require('lazy').setup({
614614
-- Some languages (like typescript) have entire language plugins that can be useful:
615615
-- https://github.com/pmizio/typescript-tools.nvim
616616
--
617-
-- But for many setups, the LSP (`tsserver`) will work just fine
618-
-- tsserver = {},
617+
-- But for many setups, the LSP (`ts_ls`) will work just fine
618+
-- ts_ls = {},
619619
--
620620

621621
lua_ls = {
@@ -666,7 +666,7 @@ require('lazy').setup({
666666
local server = servers[server_name] or {}
667667
-- This handles overriding only values explicitly passed
668668
-- by the server configuration above. Useful when disabling
669-
-- certain features of an LSP (for example, turning off formatting for tsserver)
669+
-- certain features of an LSP (for example, turning off formatting for ts_ls)
670670
server.capabilities = vim.tbl_deep_extend('force', {}, capabilities, server.capabilities or {})
671671
require('lspconfig')[server_name].setup(server)
672672
end,

0 commit comments

Comments
 (0)