9 lines
177 B
Bash
9 lines
177 B
Bash
#! zsh
|
|
HISTFILE=~/.zsh/zhistory
|
|
HISTSIZE=50000
|
|
SAVEHIST=$HISTSIZE
|
|
|
|
setopt extended_history
|
|
setopt hist_ignore_all_dups hist_ignore_space
|
|
setopt hist_verify
|
|
setopt share_history
|