2023-06-01 10:27:12 -07:00
|
|
|
# Eryn Wells <eryn@erynwells.me>
|
|
|
|
|
2024-03-04 13:58:20 -08:00
|
|
|
autoload binary_exists
|
|
|
|
autoload homebrew-prefix
|
2023-06-01 10:27:12 -07:00
|
|
|
|
|
|
|
function init_rc_fpath_darwin
|
|
|
|
{
|
|
|
|
if binary_exists brew; then
|
2024-03-04 13:58:20 -08:00
|
|
|
local brew_fpath="$(homebrew-prefix)/share/zsh/site-functions"
|
2023-06-01 10:27:12 -07:00
|
|
|
if [[ -d "$brew_fpath" ]]; then
|
|
|
|
fpath+=($brew_fpath)
|
|
|
|
fi
|
|
|
|
|
|
|
|
export FPATH
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
init_rc_fpath_darwin "$@"
|