49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
// ╭────────────────────────────────╮
|
|
// │- Zed editor tasks -│
|
|
// │- author: Daniel Heras Quesada -│
|
|
// ╰────────────────────────────────╯
|
|
[
|
|
{
|
|
"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",
|
|
"use_new_terminal": false,
|
|
"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": "📝 Preview document",
|
|
// "command": "bash ~/.config/zed/tasks/preview-doc.sh '$ZED_FILE'",
|
|
// "use_new_terminal": true,
|
|
// "allow_concurrent_runs": false,
|
|
// "reveal": "always",
|
|
// "hide": "never",
|
|
// "shell": "system"
|
|
// }
|
|
]
|