mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
29 lines
539 B
Bash
29 lines
539 B
Bash
# ignore sequential duplicates
|
|
setopt hist_ignore_dups
|
|
|
|
# ignore space-started
|
|
setopt hist_ignore_space
|
|
setopt hist_reduce_blanks
|
|
|
|
# append on exit
|
|
setopt append_history
|
|
|
|
# perform history expansion
|
|
setopt hist_verify
|
|
|
|
# do not load from persistence on every invocation
|
|
unsetopt share_history
|
|
|
|
# more! (live)
|
|
export HISTSIZE=100000
|
|
|
|
# all! (persisted)
|
|
export SAVEHIST=1000000
|
|
|
|
# share with bash
|
|
export HISTFILE=~/.history
|
|
|
|
# ignore repeated, space-started, and casual commands
|
|
HISTORY_IGNORE="(^ +|ls|bg|fg|pwd|exit|cd ..)"
|
|
|
|
# vim: ft=zsh
|