mirror of
https://github.com/LazyVim/LazyVim.git
synced 2026-07-25 14:01:06 +00:00
fix: recommended and mason
This commit is contained in:
parent
80f9352bb8
commit
86e9994dd1
1 changed files with 8 additions and 11 deletions
|
|
@ -1,20 +1,16 @@
|
|||
return {
|
||||
recommended = {
|
||||
ft = "php",
|
||||
root = { "composer.json", ".git", ".phpactor.json", ".phpactor.yml" },
|
||||
},
|
||||
|
||||
{
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
opts = function(_, opts)
|
||||
vim.list_extend(opts.ensure_installed, {
|
||||
"php",
|
||||
})
|
||||
end,
|
||||
},
|
||||
{
|
||||
"williamboman/mason.nvim",
|
||||
opts = function(_, opts)
|
||||
vim.list_extend(opts.ensure_installed, {
|
||||
"phpactor",
|
||||
})
|
||||
vim.list_extend(opts.ensure_installed, { "php" })
|
||||
end,
|
||||
},
|
||||
|
||||
{
|
||||
"neovim/nvim-lspconfig",
|
||||
opts = {
|
||||
|
|
@ -23,6 +19,7 @@ return {
|
|||
},
|
||||
},
|
||||
},
|
||||
|
||||
{
|
||||
"mfussenegger/nvim-dap",
|
||||
optional = true,
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue