mirror of https://github.com/bjeanes/dotfiles.git
15 lines
314 B
Bash
15 lines
314 B
Bash
## Command history configuration
|
|
HISTFILE=$HOME/.zsh_history
|
|
HISTSIZE=1000000
|
|
SAVEHIST=1000000
|
|
|
|
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_VERIFY
|
|
setopt SHARE_HISTORY
|