history.zsh 377 Bytes
Newer Older
1
## Command history configuration
2
HISTFILE=$HOME/.zsh_history
3
4
HISTSIZE=10000
SAVEHIST=10000
James Cox's avatar
James Cox committed
5

6
7
setopt hist_ignore_dups # ignore duplication command history list
setopt share_history # share command history data
James Cox's avatar
James Cox committed
8
9
10
11
12

setopt hist_verify
setopt inc_append_history
setopt extended_history
setopt hist_expire_dups_first
13
setopt hist_ignore_space
14
15
16

setopt SHARE_HISTORY
setopt APPEND_HISTORY