dotfiles/sub/zsh/history
2022-08-14 19:13:29 +03:00

17 lines
617 B
Plaintext

# History configurations
export HISTFILE=~/.zsh_history
export HISTSIZE=1000
export SAVEHIST=2000
setopt HIST_IGNORE_SPACE
setopt hist_expire_dups_first # delete duplicates first when HISTFILE size exceeds HISTSIZE
setopt hist_ignore_dups # ignore duplicated commands history list
setopt hist_ignore_space # ignore commands that start with space
setopt hist_verify # show command with history expansion to user before running it
#setopt share_history # share command history data
HISTORY_IGNORE="(exit|q|c)"
# configure `time` format
TIMEFMT=$'\nreal\t%E\nuser\t%U\nsys\t%S\ncpu\t%P'