Comment in init.lua around dap configuration.

This commit is contained in:
calcu1on 2025-05-21 08:44:25 -04:00
parent 547d9b000a
commit 7d8372c71f

View File

@ -56,12 +56,12 @@ dap.configurations.php = {
port = 9003, port = 9003,
log = true, log = true,
-- this is where your file is in the container -- this is where your file is in the container
-- you need to be in this directory when starting neovim.
pathMappings = { pathMappings = {
["/var/www/html/web"] = "${workspaceFolder}" ["/var/www/html/web"] = "${workspaceFolder}"
} }
} }
} }
vim.fn.sign_define('DapBreakpoint',{ text ='🟥', texthl ='', linehl ='', numhl =''}) vim.fn.sign_define('DapBreakpoint',{ text ='🟥', texthl ='', linehl ='', numhl =''})
vim.fn.sign_define('DapStopped',{ text ='▶️', texthl ='', linehl ='', numhl =''}) vim.fn.sign_define('DapStopped',{ text ='▶️', texthl ='', linehl ='', numhl =''})
vim.keymap.set('n', '<leader>?', function() dap.continue() end) vim.keymap.set('n', '<leader>?', function() dap.continue() end)