Added homebrew eval to zsh

This commit is contained in:
2021-12-24 13:52:57 -05:00
parent af4eeab9c4
commit f22005c87c

View File

@@ -18,6 +18,11 @@ zle -N down-line-or-beginning-search
# Colors
autoload -Uz colors && colors
# Homebrew
if [ "$(which brew)" ]; then
eval "$(brew shellenv)"
fi
# Load Useful Functions
source "$ZDOTDIR/zsh-functions"