mirror of
https://github.com/CoolnsX/hyprdots.git
synced 2025-12-19 23:05:23 +05:30
Love coding? here's the secret reason why
This commit is contained in:
21
zed/keymap.json
Normal file
21
zed/keymap.json
Normal file
@@ -0,0 +1,21 @@
|
||||
// Zed keymap
|
||||
//
|
||||
// For information on binding keys, see the Zed
|
||||
// documentation: https://zed.dev/docs/key-bindings
|
||||
//
|
||||
// To see the default key bindings run `zed: open default keymap`
|
||||
// from the command palette.
|
||||
[
|
||||
{
|
||||
"context": "Workspace",
|
||||
"bindings": {
|
||||
// "shift shift": "file_finder::Toggle"
|
||||
}
|
||||
},
|
||||
{
|
||||
"context": "Editor",
|
||||
"bindings": {
|
||||
// "j k": ["workspace::SendKeystrokes", "escape"]
|
||||
}
|
||||
}
|
||||
]
|
||||
39
zed/tasks.json
Normal file
39
zed/tasks.json
Normal file
@@ -0,0 +1,39 @@
|
||||
[
|
||||
{
|
||||
"label": "Laravel WebServer",
|
||||
"command": "php artisan serve",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": false,
|
||||
"reveal": "always",
|
||||
"hide": "never",
|
||||
"shell": "system"
|
||||
},
|
||||
{
|
||||
"label": "Laravel Database",
|
||||
"command": "php artisan db",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": true,
|
||||
"reveal": "always",
|
||||
"hide": "never",
|
||||
"shell": "system"
|
||||
},
|
||||
{
|
||||
"label": "Laravel Sail Start",
|
||||
"command": "./vendor/bin/sail up",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": true,
|
||||
"reveal": "always",
|
||||
"hide": "never",
|
||||
"shell": "system"
|
||||
},
|
||||
{
|
||||
"label": "Laravel Sail NPM Start",
|
||||
"command": "./vendor/bin/sail npm run dev",
|
||||
"use_new_terminal": false,
|
||||
"allow_concurrent_runs": true,
|
||||
"reveal": "always",
|
||||
"hide": "never",
|
||||
"shell": "system"
|
||||
}
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user