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