32 lines
523 B
Lua
32 lines
523 B
Lua
return {
|
|
{ import = "lazyvim.plugins.extras.lang.php" },
|
|
{
|
|
"nvim-treesitter/nvim-treesitter",
|
|
opts = {
|
|
ensure_installed = {
|
|
"phpdoc",
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"nvim-neotest/neotest",
|
|
optional = true,
|
|
dependencies = {
|
|
"olimorris/neotest-phpunit",
|
|
},
|
|
opts = {
|
|
adapters = {
|
|
["neotest-phpunit"] = {},
|
|
},
|
|
},
|
|
},
|
|
{
|
|
"luckasRanarison/nvim-devdocs",
|
|
optional = true,
|
|
opts = {
|
|
ensure_installed = {
|
|
"php",
|
|
},
|
|
},
|
|
},
|
|
}
|