From 1305288079f6d5665d6226d7b266899eb1a289a5 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 12 Nov 2024 13:39:31 -0600 Subject: make the history file both extremely large and make sure it always can exist Signed-off-by: Matt Strapp --- dot_config/zsh/dot_zshrc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'dot_config/zsh') diff --git a/dot_config/zsh/dot_zshrc b/dot_config/zsh/dot_zshrc index a592706..296d368 100644 --- a/dot_config/zsh/dot_zshrc +++ b/dot_config/zsh/dot_zshrc @@ -39,8 +39,11 @@ setopt interactive_comments setopt complete_aliases # History in cache directory: -HISTSIZE=100000000 -SAVEHIST=100000000 +HISTSIZE=999999999 +SAVEHIST=$HISTSIZE +if [ -z "$XDG_STATE_HOME/zsh" ]; then + mkdir -p "$XDG_STATE_HOME/zsh" +fi HISTFILE="$XDG_STATE_HOME"/zsh/history setopt BANG_HIST # Treat the '!' character specially during expansion. setopt EXTENDED_HISTORY # Write the history file in the ":start:elapsed;command" format. -- cgit v1.2.3