feat(misc): zed debug.json

This commit is contained in:
maelstrom 2025-11-20 11:02:18 +01:00
parent d7532587ec
commit 3bd0e77c8f

17
.zed/debug.json Normal file
View file

@ -0,0 +1,17 @@
// Project-local debug tasks
//
// For more documentation on how to configure debug tasks,
// see: https://zed.dev/docs/debugger
[
{
"label": "Debug editor",
"build": {
"command": "cmake",
"args": ["--build", "build", "-j16"],
"cwd": "$ZED_WORKTREE_ROOT"
},
"program": "$ZED_WORKTREE_ROOT/build/bin/editor",
"request": "launch",
"adapter": "CodeLLDB"
}
]