Make homebrew happy on MacOS

This commit is contained in:
Tony Blyler 2022-08-22 20:38:28 -04:00
parent da46f0cd8d
commit 32ebf043e3
3 changed files with 12 additions and 1 deletions

View file

@ -17,6 +17,12 @@ fi
export VISUAL="${EDITOR}"
if [ "$(uname)" = "Darwin" ]; then
if [ -x /opt/homebrew/bin/brew ]; then
eval "$(/opt/homebrew/bin/brew shellenv)"
fi
fi
if [ -d "${HOME}/bin" ]; then
export PATH="${HOME}/bin:${PATH}"
fi