17 lines
368 B
Bash
17 lines
368 B
Bash
# History file configuration
|
|
HISTFILE="$ZDOTDIR/.zsh_history"
|
|
HISTSIZE=10000
|
|
SAVEHIST=5000
|
|
|
|
# History command configuration
|
|
setopt EXTENDED_HISTORY
|
|
setopt HIST_EXPIRE_DUPS_FIRST
|
|
setopt HIST_IGNORE_ALL_DUPS
|
|
setopt HIST_IGNORE_DUPS
|
|
setopt HIST_IGNORE_SPACE
|
|
setopt HIST_NO_STORE
|
|
setopt HIST_REDUCE_BLANKS
|
|
setopt HIST_REDUCE_BLANKS
|
|
setopt HIST_VERIFY
|
|
setopt SHARE_HISTORY
|