nvim/snippets/json.snippets
ant 619c9e8195 Update the debugging config
Add a debug mode with <leader>g
2024-06-12 21:13:56 +02:00

13 lines
217 B
Text

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