-
-
Save ayassinov/e76cdfe292526018ab85 to your computer and use it in GitHub Desktop.
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
| # 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