Improve OSX setup

This commit is contained in:
Lynda Wang
2020-07-25 19:39:09 -04:00
committed by Michael Campagnaro
parent ee11695dee
commit e2f40a7be7
27 changed files with 1378 additions and 702 deletions

18
zlogin
View File

@@ -1,11 +1,7 @@
# go to saved path if there is one
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)
# 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
#
# Update 2020-07-25: This no longer seems to be an issue.
#path=(/usr/local/bin /usr/local/sbin /usr/local/opt/openssl/bin $path)