10 lines
No EOL
324 B
Bash
10 lines
No EOL
324 B
Bash
# enabling zsh history
|
|
export HISTFILE=~/.zsh_history # saving in the home directory
|
|
export HISTSIZE=100000 # keeping a bunch of entries around
|
|
export SAVEHIST=100000
|
|
|
|
setopt append_history
|
|
setopt hist_ignore_dups
|
|
setopt hist_ignore_space
|
|
setopt hist_verify
|
|
setopt hist_save_no_dups |