/Zsh
Last active
April 5, 2025 14:15
Revisions
-
sarthaksavvy revised this gist
Sep 4, 2020 . 1 changed file with 7 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,6 +1,9 @@ export DEFAULT_USER="$(whoami)" export PATH=~/.composer/vendor/bin:$PATH # Alias for pythons alias py=python # Alias for composer alias cr=composer alias cri="composer install" @@ -21,6 +24,10 @@ alias pas="php artisan serve" # Alias for git alias g=git # docker alias doc="docker" alias docc="docker-compose" ZSH_THEME="agnoster" -
sarthaksavvy revised this gist
Jan 29, 2020 . 1 changed file with 0 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -20,11 +20,6 @@ alias pas="php artisan serve" # Alias for git alias g=git -
sarthaksavvy revised this gist
Jan 29, 2020 . 1 changed file with 17 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,4 +1,5 @@ export DEFAULT_USER="$(whoami)" export PATH=~/.composer/vendor/bin:$PATH # Alias for composer alias cr=composer @@ -23,4 +24,19 @@ alias gp="git push" alias gs="git status" alias gch="git checkout" alias gb="git branch" alias gbc="git checkout -b" ZSH_THEME="agnoster" plugins=( git zsh-syntax-highlighting zsh-autosuggestions ) source $ZSH/oh-my-zsh.sh -
sarthaksavvy revised this gist
Oct 3, 2018 . 1 changed file with 7 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ export DEFAULT_USER="$(whoami)" # Alias for composer alias cr=composer alias cri="composer install" @@ -12,9 +14,13 @@ alias pakg="php artisan key:generate" alias pamt="php artisan make:test" alias pamf="php artisan migrate:fresh" alias pami="php artisan migrate" alias pads="php artisan db:seed" alias pas="php artisan serve" # Alias for git alias g=git alias gp="git push" alias gs="git status" alias gch="git checkout" alias gb="git branch" alias gbc="git checkout -b" -
sarthaksavvy revised this gist
Sep 30, 2018 . 1 changed file with 3 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -10,6 +10,9 @@ alias pamm="php artisan make:model" alias pamc="php artisan make:controller" alias pakg="php artisan key:generate" alias pamt="php artisan make:test" alias pamf="php artisan migrate:fresh" alias pami="php artisan migrate" alias pas="php artisan serve" # Alias for git alias g=git -
sarthaksavvy revised this gist
Sep 30, 2018 . 1 changed file with 4 additions and 0 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,6 +6,10 @@ alias cru="composer update" # Alias for artisan commands alias pa="php artisan" alias pamm="php artisan make:model" alias pamc="php artisan make:controller" alias pakg="php artisan key:generate" alias pamt="php artisan make:test" # Alias for git alias g=git -
sarthaksavvy revised this gist
Sep 30, 2018 . 1 changed file with 0 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,7 +6,6 @@ alias cru="composer update" # Alias for artisan commands alias pa="php artisan" # Alias for git alias g=git -
sarthaksavvy created this gist
Sep 30, 2018 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,14 @@ # Alias for composer alias cr=composer alias cri="composer install" alias crd="composer dump-autoload" alias cru="composer update" # Alias for artisan commands alias pa="php artisan" alias pam="php artisan make:" # Alias for git alias g=git alias gp="git push" alias gs="git status"