Add Homebrew-relative FPATH

This commit is contained in:
Spotlight 2020-12-03 20:33:01 -06:00
parent f173826937
commit 41abe0310f
Signed by: spotlight
GPG key ID: 874AA355B3209BDC

1
zshrc
View file

@ -96,6 +96,7 @@ if [[ $OSTYPE == darwin* ]]; then
if $BREW_FOUND; then if $BREW_FOUND; then
# Ensure Homebrew can be found within the path. # Ensure Homebrew can be found within the path.
export PATH="${BREW_PREFIX}/bin:${BREW_PREFIX}/sbin:${PATH}" export PATH="${BREW_PREFIX}/bin:${BREW_PREFIX}/sbin:${PATH}"
export FPATH="${BREW_PREFIX}/share/zsh/site-functions:$FPATH"
fi fi
# Under Darwin, we also want iTerm2 integration if possible. # Under Darwin, we also want iTerm2 integration if possible.