-
-
Save sarthaksavvy/f81ffb5b36f83ea396693efc7a1eaf11 to your computer and use it in GitHub Desktop.
Terminal Alias
This file contains 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 characters
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" | |
alias crd="composer dump-autoload" | |
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 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 | |
# docker | |
alias doc="docker" | |
alias docc="docker-compose" | |
ZSH_THEME="agnoster" | |
plugins=( | |
git | |
zsh-syntax-highlighting | |
zsh-autosuggestions | |
) | |
source $ZSH/oh-my-zsh.sh |
i am not getting how to use on latest vs code
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This is a simple google thing. Like This