Skip to content

Instantly share code, notes, and snippets.

@jehrhardt
Last active October 9, 2016 07:23
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save jehrhardt/6724571 to your computer and use it in GitHub Desktop.
Save jehrhardt/6724571 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=(brew docker emacs git go lein mvn npm sbt urltools)
# 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
# Make `go get` work correctly
export GOPATH=/usr/local/opt/go/libexec
export PATH=$PATH:/usr/local/opt/go/libexec/bin
# Fix Java home directory
export JAVA_HOME=`/usr/libexec/java_home`
# Make Docker use `dev` machine
eval "$(docker-machine env dev)"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment