dotfiles/zsh/history

10 lines
225 B
Bash

# ignore sequential duplicates
setopt hist_ignore_dups
setopt hist_ignore_space
# keep 1000 lines of history within the shell and save it to ~/.zsh_history:
HISTSIZE=1000
SAVEHIST=1000
HISTFILE=~/.zsh_history
# vim: ft=zsh