Skip to content

Instantly share code, notes, and snippets.

@khebbie
Created November 17, 2015 19:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save khebbie/e8505aa8cd4504bdcafc to your computer and use it in GitHub Desktop.
Save khebbie/e8505aa8cd4504bdcafc to your computer and use it in GitHub Desktop.
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