dap, xdebug, flexoki colorscheme, trouble fix, lualine fix

This commit is contained in:
2025-05-12 13:18:49 +03:00
parent 631d0e6740
commit f27c3d3299
15 changed files with 316 additions and 31 deletions

View File

@@ -1,2 +1,23 @@
require('dap').configurations.cpp = {
-- Initialization
local dap = require('dap')
-- Installing C, Rust and C++
dap.configurations.cpp = {
}
-- Initializing PHP adapter
dap.adapters.php = {
type = "executable",
command = "node",
args = { os.getenv("HOME") .. "/vscode-php-debug/out/phpDebug.js" }
}
-- Installing PHP
dap.configurations.php = {
{
type = "php",
request = "launch",
name = "Listen for Xdebug",
port = 9003
}
}