diff options
-rw-r--r-- | 04-options.zsh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/04-options.zsh b/04-options.zsh index e22f3c8..480657f 100644 --- a/04-options.zsh +++ b/04-options.zsh @@ -26,3 +26,9 @@ echo -ne '\e[5 q' _fix_cursor() { echo -ne '\e[5 q' } + +# History file. +HISTFILE=~/.zsh_history +HISTSIZE=100000 +SAVEHIST=100000 +setopt appendhistory |