mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 11:24:55 +02:00
14 lines
208 B
Lua
14 lines
208 B
Lua
|
|
local M = {}
|
|
|
|
function M.ensure_installed(names)
|
|
return {
|
|
"mason-org/mason.nvim",
|
|
optional = true,
|
|
opts = {
|
|
ensure_installed = { names }
|
|
}
|
|
}
|
|
end
|
|
|
|
return M
|