Add docker + fix homebrew

This commit is contained in:
Spotlight 2018-03-24 14:32:26 -05:00
parent 7d57a117bb
commit 3c2edf2000
No known key found for this signature in database
GPG key ID: 1677AD4E8EBBBC56

6
zshrc
View file

@ -11,6 +11,7 @@ fi
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/iterm2", from:oh-my-zsh
zplug "felixr/docker-zsh-completion"
zplug "lib/*", from:oh-my-zsh
# Stuff that modifies
@ -85,3 +86,8 @@ fi
# Add RVM to PATH for scripting. Make sure this is the last PATH variable change.
export PATH="$PATH:$HOME/.rvm/bin"
if [[ $OSTYPE == darwin* ]]; then
# Fix Homebrew pathing.
export PATH="/usr/local/bin:/usr/local/sbin:${PATH}"
fi