From 9154963392239d0659dcf8a824436722a834f523 Mon Sep 17 00:00:00 2001 From: Loic Nageleisen Date: Mon, 10 Jun 2019 15:29:29 +0200 Subject: [PATCH] Increase zsh history to 100k --- zsh/history | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/history b/zsh/history index f136b8c..38316ae 100644 --- a/zsh/history +++ b/zsh/history @@ -5,8 +5,8 @@ setopt hist_reduce_blanks setopt append_history setopt hist_verify -HISTSIZE=10000 -SAVEHIST=10000 +HISTSIZE=100000 +SAVEHIST=100000 HISTFILE=~/.zsh_history # vim: ft=zsh