Created
June 12, 2018 13:26
-
-
Save nowakov/307c856d4f7a1d54ae6ce28ea143cda2 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
export ZSH=/Users/nowakov/.oh-my-zsh | |
export EDITOR=/usr/bin/vim | |
## HANDY ALIASES | |
alias mux="tmuxinator" | |
alias rdma="rake db:migrate; RAILS_ENV=test rake db:migrate" | |
## THEME | |
ZSH_THEME="agnoster" | |
## SETTINGS | |
HYPHEN_INSENSITIVE="true" | |
## PLUGINS | |
plugins=(git) | |
source $ZSH/oh-my-zsh.sh | |
# User configuration | |
export PATH="$HOME/.yarn/bin:$PATH" | |
export PATH="/usr/local/opt/[email protected]/bin:$PATH" | |
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change. | |
export PATH="$PATH:$HOME/.rvm/bin" | |
export PATH="$(brew --prefix [email protected])/bin:$PATH" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment