format: minor

This commit is contained in:
2025-03-30 18:01:26 +02:00
parent 0389ffe2ee
commit 5982ea2df0
2 changed files with 48 additions and 39 deletions

View File

@@ -15,7 +15,7 @@
"icon_theme": "Bearded Icon Theme", "icon_theme": "Bearded Icon Theme",
"theme": { "theme": {
"mode": "system", "mode": "system",
"light": "Zed Legacy: Solarized Light", "light": "Zed Legacy: Rosé Pine Dawn",
"dark": "One Dark" "dark": "One Dark"
}, },
"unnecessary_code_fade": 0.2, "unnecessary_code_fade": 0.2,
@@ -199,7 +199,7 @@
"EXAMPLE": "test:dqnid", "EXAMPLE": "test:dqnid",
"BLUEPRINTS_PATHS": "./.blueprints" "BLUEPRINTS_PATHS": "./.blueprints"
}, },
"font_family": null, // "font_family": null,
"font_features": null, "font_features": null,
"font_size": 14, "font_size": 14,
"line_height": "comfortable", "line_height": "comfortable",

View File

@@ -3,42 +3,51 @@
// │- author: Daniel Heras Quesada │ // │- author: Daniel Heras Quesada │
// ╰───────────────────────────────╯ // ╰───────────────────────────────╯
[ [
{ {
"label": "Example task", "label": "Example task",
"command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done", "command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done",
"env": { "env": {
"foo": "bar" "foo": "bar"
},
"use_new_terminal": false,
"allow_concurrent_runs": false,
"reveal": "always",
"hide": "never",
"shell": "system"
}, },
"use_new_terminal": false, {
"allow_concurrent_runs": false, "label": "Build migrate",
"reveal": "always", "command": "bash ~/.config/zed/tasks/build-migrate.sh",
"hide": "never", "use_new_terminal": false,
"shell": "system" "allow_concurrent_runs": false,
}, "reveal": "always",
{ "hide": "never",
"label": "Build migrate", "shell": "system"
"command": "bash ~/.config/zed/tasks/build-migrate.sh", },
"use_new_terminal": false, {
"allow_concurrent_runs": false, "label": "Commit Stradi",
"reveal": "always", "command": "bash ~/.config/zed/tasks/commit-stradi.sh",
"hide": "never", "use_new_terminal": false,
"shell": "system" "allow_concurrent_runs": false,
}, "reveal": "always",
{ "hide": "always",
"label": "Lazygit", "shell": "system"
"command": "lazygit", },
"args": [], {
"env": {}, "label": "Lazygit",
"use_new_terminal": true, "command": "lazygit",
"allow_concurrent_runs": false, "args": [],
}, "env": {},
{ "use_new_terminal": true,
"label": "Blueprints", "allow_concurrent_runs": false
"command": "~/Packages/code-templates/code_templates", },
"use_new_terminal": true, {
"allow_concurrent_runs": false, "label": "Blueprints",
"reveal": "always", "command": "~/Packages/code-templates/code_templates",
"hide": "never", "use_new_terminal": true,
"shell": "system" "allow_concurrent_runs": false,
} "reveal": "always",
"hide": "never",
"shell": "system"
}
] ]