From f22005c87c207fda05c45a7376a4157b177c5bec Mon Sep 17 00:00:00 2001 From: Michael Housh Date: Fri, 24 Dec 2021 13:52:57 -0500 Subject: [PATCH] Added homebrew eval to zsh --- zsh/.config/zsh/.zshrc | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/zsh/.config/zsh/.zshrc b/zsh/.config/zsh/.zshrc index 14f5efd..fa4d834 100644 --- a/zsh/.config/zsh/.zshrc +++ b/zsh/.config/zsh/.zshrc @@ -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"