12 lines
325 B
Bash
12 lines
325 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
|
|
setopt histignoredups
|