mirror of
https://github.com/pnx/dotfiles
synced 2026-06-16 19:30:01 +02:00
nvim php: split main file as it starts to get abit big
This commit is contained in:
parent
61ef12eff1
commit
bb62416c69
7 changed files with 164 additions and 142 deletions
14
nvim/lua/user/utils/mason.lua
Normal file
14
nvim/lua/user/utils/mason.lua
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
|
||||
local M = {}
|
||||
|
||||
function M.ensure_installed(names)
|
||||
return {
|
||||
"mason-org/mason.nvim",
|
||||
optional = true,
|
||||
opts = {
|
||||
ensure_installed = { names }
|
||||
}
|
||||
}
|
||||
end
|
||||
|
||||
return M
|
||||
Loading…
Add table
Add a link
Reference in a new issue