nvim/snippets/json.snippets
2024-08-12 16:52:09 +02:00

27 lines
442 B
Text

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