changes
This commit is contained in:
parent
e33dc50584
commit
5ea4aa27b8
13
init.lua
13
init.lua
|
|
@ -717,6 +717,19 @@ require('lazy').setup({
|
||||||
vim.list_extend(ensure_installed, {
|
vim.list_extend(ensure_installed, {
|
||||||
'stylua', -- Used to format Lua code
|
'stylua', -- Used to format Lua code
|
||||||
'ansiblels', -- ansible
|
'ansiblels', -- ansible
|
||||||
|
{
|
||||||
|
'gopls',
|
||||||
|
condition = function()
|
||||||
|
return vim.fn.executable 'go' == 1
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
{
|
||||||
|
'powershell_ls',
|
||||||
|
condition = function()
|
||||||
|
return vim.fn.executable 'pwsh' == 1
|
||||||
|
end,
|
||||||
|
},
|
||||||
|
'dockerls', -- dockerfile
|
||||||
})
|
})
|
||||||
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
|
require('mason-tool-installer').setup { ensure_installed = ensure_installed }
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue