Skip to content

Instantly share code, notes, and snippets.

@remorses
Created October 11, 2025 22:01
Show Gist options
  • Save remorses/549f966b58a974e00c4615b8c356de58 to your computer and use it in GitHub Desktop.
Save remorses/549f966b58a974e00c4615b8c356de58 to your computer and use it in GitHub Desktop.
Add support for split diff view and word highlights to Zed
// ~/.config/zed/tasks.json
[
{
"label": "Critique",
"command": "bunx critique --watch",
"shell": {
"program": "sh"
},
"hide": "on_success",
"reveal_target": "center",
"show_summary": false,
"show_command": false,
"allow_concurrent_runs": false,
"reveal": "always",
"use_new_terminal": true
}
]
// ~/.config/zed/keymap.json
{
"bindings": {
"cmd-shift-g": [
"task::Spawn",
{ "task_name": "Critique", "reveal_target": "center" }
]
}
}
@rekram1-node
Copy link

let's go

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment