From a3cfb795bcfc39bf7d978a22390eb013ed04d1e7 Mon Sep 17 00:00:00 2001 From: Alicia Sykes Date: Fri, 9 Aug 2024 23:40:30 +0100 Subject: [PATCH] Updates history file size --- config/zsh/lib/history.zsh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/zsh/lib/history.zsh b/config/zsh/lib/history.zsh index 2ff4b14..702be62 100644 --- a/config/zsh/lib/history.zsh +++ b/config/zsh/lib/history.zsh @@ -3,6 +3,7 @@ # Configure history file. HISTFILE="${XDG_CACHE_HOME}/zsh/history" HISTSIZE=50000 +HISTFILESIZE=50000 SAVEHIST=10000 # History command configuration. @@ -15,4 +16,4 @@ setopt hist_ignore_space # Ignore commands that start with a space. setopt hist_reduce_blanks # Remove superfluous blanks from history items. setopt hist_verify # Show command with history expansion to user before running it. setopt inc_append_history # Add commands to $HISTFILE in order of execution. -setopt share_history # Share history between different instances of the shell. \ No newline at end of file +setopt share_history # Share history between different instances of the shell.