15 lines
251 B
Bash
15 lines
251 B
Bash
|
#
|
||
|
# History control
|
||
|
#
|
||
|
|
||
|
setopt histignorealldups
|
||
|
setopt extended_history
|
||
|
setopt append_history
|
||
|
setopt histignorespace
|
||
|
unsetopt share_history
|
||
|
setopt histallowclobber
|
||
|
setopt INC_APPEND_HISTORY_TIME
|
||
|
HISTSIZE=100000
|
||
|
SAVEHIST=100000
|
||
|
HISTFILE=~/.zsh_history
|