remove unnecessary paths after William's suggestions

This commit is contained in:
Iordanis Petkakis 2025-05-14 12:10:32 +03:00
parent 64c4e501c6
commit 759e410984
2 changed files with 5 additions and 8 deletions

View file

@ -48,11 +48,10 @@ return {
optional = true,
opts = function()
local dap = require("dap")
local path = LazyVim.get_pkg_path("php-debug-adapter")
dap.adapters.php = {
type = "executable",
command = "node",
args = { path .. "/extension/out/phpDebug.js" },
command = "php-debug-adapter",
args = {},
}
end,
},