]> arthur.barton.de Git - ax-zsh.git/blob - default_plugins/history/history.zshrc
579d6713c15929cc1769d2522bffea104a49c106
[ax-zsh.git] / default_plugins / history / history.zshrc
1 # AX-ZSH: Alex' Modular ZSH Configuration
2 # history.zshrc: Setup ZSH history
3
4 function clear_history {
5         local HISTSIZE=0
6         cat /dev/null >"$HISTFILE"
7         fc -R
8 }
9
10 HISTSIZE=10000
11 SAVEHIST=10000
12
13 setopt append_history
14 setopt extended_history
15 setopt hist_expire_dups_first
16 setopt hist_ignore_dups
17 setopt hist_ignore_space
18 setopt hist_verify
19 setopt histignorealldups
20 setopt histignorespace
21 setopt inc_append_history
22 setopt share_history
23
24 alias history='fc -il 1'