dotfiles/zsh/history
2021-08-10 13:55:58 +02:00

12 lines
242 B
Bash

# ignore sequential duplicates
setopt hist_ignore_dups
setopt hist_ignore_space
setopt hist_reduce_blanks
setopt append_history
setopt hist_verify
HISTSIZE=100000
SAVEHIST=100000
HISTORY_IGNORE="(^ +|ls|bg|fg|pwd|exit|cd ..)"
# vim: ft=zsh