Skip to content

Instantly share code, notes, and snippets.

@ayassinov
Forked from jehrhardt/.zshrc
Last active August 29, 2015 14:07
Show Gist options
  • Save ayassinov/e76cdfe292526018ab85 to your computer and use it in GitHub Desktop.
Save ayassinov/e76cdfe292526018ab85 to your computer and use it in GitHub Desktop.
# oh-my-zsh location
ZSH=$HOME/.oh-my-zsh
# Use standard theme
ZSH_THEME="robbyrussell"
# Use plugins for typical tools
plugins=(bower brew bundler emacs gem git grunt lein mvn npm rake sbt)
# Fix order of directories on PATH
# Do this before oh-my-zsh is loaded!
export PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
# Load oh-my-zsh
source $ZSH/oh-my-zsh.sh
# Add tools installed by NPM to PATH
export PATH=/usr/local/share/npm/bin:$PATH
# Fix Java home directory
export JAVA_HOME=`/usr/libexec/java_home`
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment