dotfiles/zsh/history

9 lines
200 B
Bash

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