mirror of
https://github.com/LazyVim/LazyVim.git
synced 2025-06-24 17:58:51 +02:00
fix(go): extend mason ensure_installed
This commit is contained in:
parent
9cfe88c7ba
commit
b172f47f27
1 changed files with 4 additions and 3 deletions
|
@ -26,9 +26,10 @@ return {
|
||||||
dependencies = {
|
dependencies = {
|
||||||
{
|
{
|
||||||
"mason.nvim",
|
"mason.nvim",
|
||||||
opts = {
|
opts = function(_, opts)
|
||||||
ensure_installed = { "delve" },
|
opts.ensure_installed = opts.ensure_installed or {}
|
||||||
},
|
table.insert(opts.ensure_installed, "delve")
|
||||||
|
end,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue