From 41abe0310fc8704cf1cfb2013d11af4e3fc3e206 Mon Sep 17 00:00:00 2001 From: Spotlight Date: Thu, 3 Dec 2020 20:33:01 -0600 Subject: [PATCH] Add Homebrew-relative FPATH --- zshrc | 1 + 1 file changed, 1 insertion(+) diff --git a/zshrc b/zshrc index 8b03213..70d2680 100644 --- a/zshrc +++ b/zshrc @@ -96,6 +96,7 @@ if [[ $OSTYPE == darwin* ]]; then if $BREW_FOUND; then # Ensure Homebrew can be found within the path. export PATH="${BREW_PREFIX}/bin:${BREW_PREFIX}/sbin:${PATH}" + export FPATH="${BREW_PREFIX}/share/zsh/site-functions:$FPATH" fi # Under Darwin, we also want iTerm2 integration if possible.