mirror of
https://github.com/zdharma-continuum/zinit-configs.git
synced 2025-01-31 04:08:16 +01:00
0e4f0cb552
For demonstrating new search behavior.
11 lines
413 B
Bash
Executable file
11 lines
413 B
Bash
Executable file
|
|
export HISTFILE=~/.zsh_history
|
|
export HISTSIZE=10000000
|
|
export SAVEHIST=10000000
|
|
|
|
setopt HIST_VERIFY
|
|
setopt EXTENDED_HISTORY # save each command's beginning timestamp and the duration to the history file
|
|
setopt HIST_IGNORE_ALL_DUPS
|
|
setopt HIST_REDUCE_BLANKS
|
|
setopt INC_APPEND_HISTORY # this is default, but set for share_history
|
|
setopt SHARE_HISTORY # Share history file amongst all Zsh sessions
|