Last active
October 9, 2016 07:23
-
-
Save jehrhardt/6724571 to your computer and use it in GitHub Desktop.
This file contains 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 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