8 lines
130 B
Bash
8 lines
130 B
Bash
if type brew &>/dev/null
|
|
then
|
|
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
fi
|