mirror of
https://github.com/sbrow/nix.git
synced 2026-02-27 13:21:45 -05:00
feat: Added more shortcuts.
This commit is contained in:
@@ -127,11 +127,14 @@ in
|
|||||||
})
|
})
|
||||||
(lib.mkIf (cfg.bashAliases.enable == true) {
|
(lib.mkIf (cfg.bashAliases.enable == true) {
|
||||||
programs.bash.shellAliases = {
|
programs.bash.shellAliases = {
|
||||||
|
a = "php artisan";
|
||||||
h = "php artisan horizon";
|
h = "php artisan horizon";
|
||||||
m = "php artisan migrate";
|
m = "php artisan migrate";
|
||||||
mfs = "php artisan migrate:fresh --seed";
|
mfs = "php artisan migrate:fresh --seed";
|
||||||
mr = "php artisan migrate:rollback";
|
mr = "php artisan migrate:rollback";
|
||||||
mr1 = "php artisan migrate:rollback --step=1";
|
mr1 = "php artisan migrate:rollback --step=1";
|
||||||
|
o = "php artisan optimize";
|
||||||
|
oc = "php artisan optimize:clear";
|
||||||
standard-version = "yarn standard-version";
|
standard-version = "yarn standard-version";
|
||||||
t = "php artisan tinker";
|
t = "php artisan tinker";
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user