use the ensure installed list to enable the typescript language server

This commit is contained in:
Nick Burt 2026-02-08 22:47:43 -06:00
parent c2a02f734b
commit 01669b4939
1 changed files with 1 additions and 1 deletions

View File

@ -604,7 +604,6 @@ require('lazy').setup({
-- https://github.com/pmizio/typescript-tools.nvim -- https://github.com/pmizio/typescript-tools.nvim
-- --
-- But for many setups, the LSP (`ts_ls`) will work just fine -- But for many setups, the LSP (`ts_ls`) will work just fine
-- FIX: Can not find ts_ls
-- ts_ls = {}, -- ts_ls = {},
} }
@ -620,6 +619,7 @@ require('lazy').setup({
'lua-language-server', -- Lua Language server 'lua-language-server', -- Lua Language server
'stylua', -- Used to format Lua code 'stylua', -- Used to format Lua code
-- You can add other tools here that you want Mason to install -- You can add other tools here that you want Mason to install
'typescript-language-server', --Typescript Language Server
}) })
require('mason-tool-installer').setup { ensure_installed = ensure_installed } require('mason-tool-installer').setup { ensure_installed = ensure_installed }