From 7d8372c71fce26f947487a27b93da1c5906f8695 Mon Sep 17 00:00:00 2001 From: calcu1on Date: Wed, 21 May 2025 08:44:25 -0400 Subject: [PATCH] Comment in init.lua around dap configuration. --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 5d62f2c..a13360c 100644 --- a/init.lua +++ b/init.lua @@ -56,12 +56,12 @@ dap.configurations.php = { port = 9003, log = true, -- this is where your file is in the container + -- you need to be in this directory when starting neovim. pathMappings = { ["/var/www/html/web"] = "${workspaceFolder}" } } } - vim.fn.sign_define('DapBreakpoint',{ text ='🟥', texthl ='', linehl ='', numhl =''}) vim.fn.sign_define('DapStopped',{ text ='▶️', texthl ='', linehl ='', numhl =''}) vim.keymap.set('n', '?', function() dap.continue() end)