Skip to content

Instantly share code, notes, and snippets.

@fresh5447
Created April 20, 2018 02:05
Show Gist options
  • Save fresh5447/6e60c88071f9fefe5d7184b48b4f3d47 to your computer and use it in GitHub Desktop.
Save fresh5447/6e60c88071f9fefe5d7184b48b4f3d47 to your computer and use it in GitHub Desktop.
aliases etc..
# Set name of the theme to load. Optionally, if you set this to "random"
# it'll load a random theme each time that oh-my-zsh is loaded.
# See https://github.com/robbyrussell/oh-my-zsh/wiki/Themes
# ZSH_THEME="funky"
# ZSH_THEME="fino-time"
# ZSH_THEME="dogenpunk"
# ZSH_THEME="cloud"
# ZSH_THEME="robbyrussell"
# ZSH_THEME="random"
# ZSH_THEME="agnoster"
# ZSH_THEME="Soliah"
# ZSH_THEME="af-magic"
# ZSH_THEME="amuse"
# ZSH_THEME="arrow" 4.5/5
# ZSH_THEME="aussiegeek" 4.5
ZSH_THEME="avit"
# ZSH_THEME="bira" 4.8
# ZSH_THEME="blinks" 4.7
alias yrs='yarn run start'
alias nrs='npm run start'
alias web='python -m SimpleHTTPServer'
alias reload='source ~/.zshrc'
alias gitlog='git log --all --graph --decorate --oneline --pretty'
alias mongoSearch='ps aux | grep mongo'
alias goBrowser='browser-sync start --server --files "*.html, css/*.css, js/*.js"'
alias goLilBrowser='browser-sync start --server --files "*.html, *.css, *.js"'
alias crons='crontab -l'
###funny voices
###http://www.techradar.com/us/how-to/computing/apple/terminal-101-making-your-mac-talk-w$
alias lunch='say -v "Good News" "Its lunch time"'
alias weather='curl -4 http://wttr.in'
alias gcm='git checkout master'
alias gs='git status'
alias ga='git add -A'
alias gcom='git commit -m';
alias gp='git push origin master && say -v "Good News" "pushing commit"';
alias gb='git branch'
alias gco='git checkout'
alias grv='git remote -v'
alias gpull='git pull origin master'
# GRAPH COOL ALIASES
alias gcs='graphcool status'
alias gcpush='graphcool push'
alias gcpull='graphcool pull'
alias gcconsole='graphcool console'
alias up2='cd ../..';
alias up3='cd ../../..';
alias up4='cd ../../../..';
alias up5='cd ../../../../..';
alias up6='cd ../../../../../..';
alias up7='cd ../../../../../../..';
alias up8='cd ../../../../../../../..';
alias up9='cd ../../../../../../../../..';
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment