Skip to content

Commit bf92a1f

Browse files
authored
Merge branch 'nvim-lua:master' into master
2 parents 327e855 + 7201dc4 commit bf92a1f

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
@@ -625,8 +625,8 @@ require('lazy').setup({
625625
-- Some languages (like typescript) have entire language plugins that can be useful:
626626
-- https://github.com/pmizio/typescript-tools.nvim
627627
--
628-
-- But for many setups, the LSP (`tsserver`) will work just fine
629-
-- tsserver = {},
628+
-- But for many setups, the LSP (`ts_ls`) will work just fine
629+
-- ts_ls = {},
630630
--
631631

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

0 commit comments

Comments
 (0)