This commit is contained in:
s-kontrol 2025-07-01 01:03:53 -03:00
parent 5ea4aa27b8
commit 5b71f077fa
1 changed files with 5 additions and 3 deletions

View File

@ -715,8 +715,7 @@ require('lazy').setup({
-- for you, so that they are available from within Neovim.
local ensure_installed = vim.tbl_keys(servers or {})
vim.list_extend(ensure_installed, {
'stylua', -- Used to format Lua code
'ansiblels', -- ansible
{ 'bash-language-server', auto_update = true },
{
'gopls',
condition = function()
@ -724,11 +723,14 @@ require('lazy').setup({
end,
},
{
'powershell_ls',
'powershell_es',
condition = function()
return vim.fn.executable 'pwsh' == 1
end,
},
-- no extra requirement list
'ansiblels', -- ansible
'stylua', -- Used to format Lua code
'dockerls', -- dockerfile
})
require('mason-tool-installer').setup { ensure_installed = ensure_installed }