From fb5bb8fd4d1568685320b9a5f21a93e8d4eec787 Mon Sep 17 00:00:00 2001 From: HaraldNordgren Date: Wed, 7 Dec 2016 14:19:33 +0100 Subject: [PATCH] Increase HISTSIZE and SAVEHIST by a factor of 10 --- lib/history.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/history.zsh b/lib/history.zsh index 5de71c2d3..cb8262ae3 100644 --- a/lib/history.zsh +++ b/lib/history.zsh @@ -3,8 +3,8 @@ if [ -z "$HISTFILE" ]; then HISTFILE=$HOME/.zsh_history fi -HISTSIZE=10000 -SAVEHIST=10000 +HISTSIZE=100000 +SAVEHIST=100000 # Show history case $HIST_STAMPS in