]> arthur.barton.de Git - ax-zsh.git/blob - default_plugins/history/history.zshrc
f6a907bac027007cf60cf756aa1a9d3ad92a1da6
[ax-zsh.git] / default_plugins / history / history.zshrc
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # history.zshrc: Setup ZSH history
3
4 HISTSIZE=10000
5 SAVEHIST=10000
6
7 setopt append_history
8 setopt extended_history
9 setopt hist_expire_dups_first
10 setopt hist_ignore_dups
11 setopt hist_ignore_space
12 setopt hist_verify
13 setopt histignorealldups
14 setopt histignorespace
15 setopt inc_append_history
16 setopt share_history
17
18 alias history='fc -il 1'