From f59703264cd5d6befa584c78d6e7cde188c7dbb9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=A9bastien=20Larivi=C3=A8re?= Date: Wed, 13 Jan 2016 18:15:07 -0500 Subject: [PATCH] Switching the HISTSIZE to 32768 --- lib/history.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/history.zsh b/lib/history.zsh index 5de71c2d3..6a75092b8 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=32768 +SAVEHIST=32768 # Show history case $HIST_STAMPS in