chore(omnisharp): add netcoredbg to ensure_installed

This commit is contained in:
Vo Quang Chien 2024-02-09 20:07:41 +07:00
parent 61aa6fb339
commit 84e92520fe

View file

@ -35,8 +35,9 @@ return {
{
"williamboman/mason.nvim",
opts = function(_, opts)
opts.ensure_installed = opts.ensure_installed or {}
table.insert(opts.ensure_installed, "csharpier")
if type(opts.ensure_installed) == "table" then
vim.list_extend(opts.ensure_installed, { "netcoredbg", "csharpier" })
end
end,
},
{