Update the debugging config

Add a debug mode with <leader>g
This commit is contained in:
ant 2024-06-12 21:13:56 +02:00
parent 2821a9a153
commit 619c9e8195
6 changed files with 109 additions and 30 deletions

13
snippets/json.snippets Normal file
View file

@ -0,0 +1,13 @@
snippet launch template of dap_config.json
{
"version": "0.2.0",
"configurations": [
{
"type": "lldb",
"request": "launch",
"name": "Launch",
"program": "./${exe}",
"args": [],
}
]
}