Last active
December 21, 2015 07:18
-
-
Save joelgriffith/6269849 to your computer and use it in GitHub Desktop.
Zero Shell Preferences
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 characters
######################### | |
## ZSH | |
######################### | |
ZSH=$HOME/.oh-my-zsh | |
ZSH_THEME="ys" | |
######################### | |
## PLUGINS | |
######################### | |
plugins=(git npm node sublime) | |
source $ZSH/oh-my-zsh.sh | |
########################## | |
## ALIASES | |
########################## | |
alias gtar='git archive -o latest.tar --format=tar.gz HEAD -9' | |
alias p='cd ~/Projects' | |
alias dir='ls -la' | |
alias ios='open /Applications/Xcode.app/Contents/Developer/Applications/iOS\ Simulator.app' | |
alias hosts='sudo vim /etc/hosts' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment