11 lines
303 B
Bash
11 lines
303 B
Bash
if type brew &>/dev/null
|
|
then
|
|
FPATH="$(brew --prefix)/share/zsh/site-functions:${FPATH}"
|
|
|
|
autoload -Uz compinit
|
|
compinit
|
|
fi
|
|
|
|
setopt appendhistory # Append history to the history file (no overwriting)
|
|
setopt incappendhistory # Immediately append to the history file, not just when a term is killed
|