My blog
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

add zed tasks

dish c41b2dc3 8b27a5b0

+25
+25
.zed/tasks.json
··· 1 + // Static tasks configuration. 2 + // 3 + // Example: 4 + [ 5 + { 6 + "label": "start dev server", 7 + "command": "just serve", 8 + "use_new_terminal": true, 9 + "allow_concurrent_runs": false, 10 + "reveal": "never", 11 + "reveal_target": "dock", 12 + "hide": "never", 13 + "shell": "system" 14 + }, 15 + { 16 + "label": "build site to _site", 17 + "command": "just build", 18 + "use_new_terminal": true, 19 + "allow_concurrent_runs": false, 20 + "reveal": "always", 21 + "reveal_target": "dock", 22 + "hide": "on_success", 23 + "shell": "system" 24 + } 25 + ]