mirror of
https://github.com/lloeki/dotfiles.git
synced 2025-12-06 07:24:39 +01:00
9 lines
200 B
Bash
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
|