11 lines
234 B
Bash
11 lines
234 B
Bash
HISTSIZE=50000
|
|
SAVEHIST=20000
|
|
HISTFILE=$HOME/.cache/zsh/history
|
|
|
|
setopt extended_history
|
|
setopt hist_expire_dups_first
|
|
setopt hist_ignore_dups
|
|
setopt hist_ignore_space
|
|
setopt hist_verify
|
|
setopt inc_append_history
|
|
setopt share_history
|