9 lines
172 B
Bash
9 lines
172 B
Bash
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
if type brew &>/dev/null
|
|
then
|
|
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
fi
|