From ae97ddcb1244a7b54356890fe35d0ea9338f1d95 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sun, 25 Aug 2024 10:41:26 +0200 Subject: [PATCH] zsh/rc: increase history size Getting closer to the current $HISTSIZE ... --- shell/zsh/rc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/zsh/rc b/shell/zsh/rc index 515ae9b..85539b8 100644 --- a/shell/zsh/rc +++ b/shell/zsh/rc @@ -144,8 +144,8 @@ autoload -Uz zmv # HISTORY SETTINGS # Use history and store it in ~/.zsh/history. -HISTSIZE=1000000 -SAVEHIST=1000000 +HISTSIZE=10000000 +SAVEHIST=10000000 HISTFILE=~/.zsh/history # Append to the history file instead of overwriting it and do it immediately # when a command is executed. -- 2.49.1