Comment in init.lua around dap configuration.
This commit is contained in:
parent
547d9b000a
commit
7d8372c71f
2
init.lua
2
init.lua
@ -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)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user