16 lines
418 B
Bash
16 lines
418 B
Bash
# bip at command end
|
|
function precmd() {
|
|
echo -n -e "\a"
|
|
}
|
|
|
|
# history file
|
|
unsetopt share_history
|
|
setopt INC_APPEND_HISTORY
|
|
setopt HIST_EXPIRE_DUPS_FIRST
|
|
HISTSIZE=500000
|
|
SAVEHIST=500000
|
|
|
|
# Fix for compdef, taken from https://github.com/seletskiy/zsh-zgen-compinit-tweak
|
|
autoload -Uz compinit && compinit -C
|
|
alias compinit='compinit-zgen'
|
|
function compinit-zgen() { grep -q ".zgen" <<< "${@}" && \compinit "${@}" }
|