From 3bd0e77c8fbaf912af0e45531dcd9053266928a4 Mon Sep 17 00:00:00 2001 From: maelstrom Date: Thu, 20 Nov 2025 11:02:18 +0100 Subject: [PATCH] feat(misc): zed debug.json --- .zed/debug.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 .zed/debug.json diff --git a/.zed/debug.json b/.zed/debug.json new file mode 100644 index 0000000..d53ea53 --- /dev/null +++ b/.zed/debug.json @@ -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" + } +]