Fixing an error when launching

This commit is contained in:
Jason Schneekloth 2026-02-04 01:10:15 -06:00
parent 14a1a25c75
commit 9f04755315
1 changed files with 3 additions and 2 deletions

View File

@ -614,7 +614,7 @@ require('lazy').setup({
--
-- But for many setups, the LSP (`ts_ls`) will work just fine
-- ts_ls = {},
rust_analyzer = {},
-- rust_analyzer = {},
vtsls = {
-- cmd = { ... },
-- filetypes = { ... },
@ -632,7 +632,8 @@ require('lazy').setup({
-- You can press `g?` for help in this menu.
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'lua_ls', -- Lua Language server
--'lua_ls', -- Lua Language server
'lua-language-server',
'stylua', -- Used to format Lua code
-- You can add other tools here that you want Mason to install
})