10 lines
211 B
Bash
10 lines
211 B
Bash
#! zsh
|
|
HISTFILE=$XDG_DATA_HOME/zsh/history
|
|
mkdir -p ${HISTFILE:h}
|
|
HISTSIZE=50000
|
|
SAVEHIST=$HISTSIZE
|
|
|
|
setopt extended_history
|
|
setopt hist_ignore_all_dups hist_ignore_space
|
|
setopt hist_verify
|
|
setopt share_history
|