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 lambda theme
ZSH_THEME="robbyrussell"
# Use plugins for typical tools
plugins=(brew git)
# Load oh-my-zsh
source $ZSH/oh-my-zsh.sh
# Fix Java home directory
export JAVA_HOME=`/usr/libexec/java_home`
# Load rustup tools
export PATH=$HOME/.cargo/bin:$PATH
# Alias for opening file in Emacs via `e .zshrc`
alias e='emacsclient --no-wait'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment