diff --git a/settings.json b/settings.json index a712b07..0c82299 100644 --- a/settings.json +++ b/settings.json @@ -15,7 +15,7 @@ "icon_theme": "Bearded Icon Theme", "theme": { "mode": "system", - "light": "Zed Legacy: Solarized Light", + "light": "Zed Legacy: Rosé Pine Dawn", "dark": "One Dark" }, "unnecessary_code_fade": 0.2, @@ -199,7 +199,7 @@ "EXAMPLE": "test:dqnid", "BLUEPRINTS_PATHS": "./.blueprints" }, - "font_family": null, + // "font_family": null, "font_features": null, "font_size": 14, "line_height": "comfortable", diff --git a/tasks.json b/tasks.json index 58eb205..908cdce 100644 --- a/tasks.json +++ b/tasks.json @@ -3,42 +3,51 @@ // │- author: Daniel Heras Quesada │ // ╰───────────────────────────────╯ [ - { - "label": "Example task", - "command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done", - "env": { - "foo": "bar" + { + "label": "Example task", + "command": "for i in {1..5}; do echo \"Hello $i/5\"; sleep 1; done", + "env": { + "foo": "bar" + }, + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "hide": "never", + "shell": "system" }, - "use_new_terminal": false, - "allow_concurrent_runs": false, - "reveal": "always", - "hide": "never", - "shell": "system" - }, - { - "label": "Build migrate", - "command": "bash ~/.config/zed/tasks/build-migrate.sh", - "use_new_terminal": false, - "allow_concurrent_runs": false, - "reveal": "always", - "hide": "never", - "shell": "system" - }, - { - "label": "Lazygit", - "command": "lazygit", - "args": [], - "env": {}, - "use_new_terminal": true, - "allow_concurrent_runs": false, - }, - { - "label": "Blueprints", - "command": "~/Packages/code-templates/code_templates", - "use_new_terminal": true, - "allow_concurrent_runs": false, - "reveal": "always", - "hide": "never", - "shell": "system" - } + { + "label": "Build migrate", + "command": "bash ~/.config/zed/tasks/build-migrate.sh", + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "hide": "never", + "shell": "system" + }, + { + "label": "Commit Stradi", + "command": "bash ~/.config/zed/tasks/commit-stradi.sh", + "use_new_terminal": false, + "allow_concurrent_runs": false, + "reveal": "always", + "hide": "always", + "shell": "system" + }, + { + "label": "Lazygit", + "command": "lazygit", + "args": [], + "env": {}, + "use_new_terminal": true, + "allow_concurrent_runs": false + }, + { + "label": "Blueprints", + "command": "~/Packages/code-templates/code_templates", + "use_new_terminal": true, + "allow_concurrent_runs": false, + "reveal": "always", + "hide": "never", + "shell": "system" + } ]