dotfiles/shells/zsh/lib/history.zsh

15 lines
314 B
Bash
Raw Normal View History

2012-12-05 11:55:32 +11:00
## Command history configuration
HISTFILE=$HOME/.zsh_history
2019-07-22 16:21:32 +10:00
HISTSIZE=1000000
SAVEHIST=1000000
2012-12-05 11:55:32 +11:00
2019-07-22 16:21:32 +10:00
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