17 lines
587 B
Bash
17 lines
587 B
Bash
SAVEHIST=10000
|
|
HISTSIZE=10000
|
|
HISTFILE="$HOME/.local/share/zsh/zhistory"
|
|
|
|
setopt EXTENDED_HISTORY
|
|
setopt APPEND_HISTORY
|
|
setopt HIST_FIND_NO_DUPS
|
|
setopt HIST_EXPIRE_DUPS_FIRST
|
|
setopt HIST_IGNORE_SPACE
|
|
setopt HIST_VERIFY
|
|
setopt SHARE_HISTORY
|
|
setopt HIST_IGNORE_DUPS
|
|
setopt INC_APPEND_HISTORY
|
|
setopt HIST_REDUCE_BLANKS
|
|
|
|
# Activate extended gobbing
|
|
setopt extended_glob
|