12 lines
261 B
Lua
12 lines
261 B
Lua
|
-- extends the mason configurations
|
||
|
|
||
|
return {
|
||
|
{
|
||
|
"williamboman/mason.nvim",
|
||
|
opts = function(_, opts)
|
||
|
opts.ensure_installed = opts.ensure_installed or {}
|
||
|
vim.list_extend(opts.ensure_installed, { "markdownlint", "marksman" })
|
||
|
end,
|
||
|
},
|
||
|
}
|