1
0
Fork 0
zsh/USER.zsh

17 lines
418 B
Bash
Raw Normal View History

2024-12-10 14:54:17 +01:00
# 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 "${@}" }