OS X setup improvements

This commit is contained in:
2017-11-20 23:08:51 -05:00
parent c7ae560dc1
commit 5ebdaecf90
4 changed files with 15 additions and 3 deletions

6
zlogin
View File

@@ -3,3 +3,9 @@ if [[ -f ~/.current_path~ ]]; then
cd `cat ~/.current_path~`
rm ~/.current_path~
fi
# Need to edit the path again here so that we can get the homebrew bin folder ahead of
# everything else. This is necessary because zsh is modifying the path in zshrc, and
# that causes us to run out of /usr/bin for programs that we want to use from homebrew's
# bin
path=($HOME/homebrew/opt/openssl/bin $HOME/homebrew/sbin $HOME/homebrew/bin $path)