Created
November 17, 2015 19:04
-
-
Save khebbie/e8505aa8cd4504bdcafc to your computer and use it in GitHub Desktop.
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
plugins=(git, autojump, fasd) | |
export EDITOR='git' | |
SHELL=zsh | |
# User configuration | |
export PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/games$ | |
export PATH="$HOME/.rbenv/bin:$PATH" | |
export PATH="$HOME/Downloads/android-studio/bin:$PATH" | |
source $ZSH/oh-my-zsh.sh | |
alias gs="git status -sb" | |
g() { | |
if [[ $# > 0 ]]; then | |
git $@ | |
else | |
git status -sb | |
fi | |
} | |
# You may need to manually set your language environment | |
export LANG=en_US.UTF-8 | |
export NODE_PATH=/usr/local/lib/node_module | |
eval "$(rbenv init -)" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment