From 8366e7f8e23dfd99854a85387b3f8bacd8b69f5d Mon Sep 17 00:00:00 2001 From: Vladimir Hodakov Date: Wed, 12 Dec 2018 14:35:16 +0400 Subject: [PATCH] Change history size to 10M Sometimes you type more than 1000 commands per day, and it's annoying that zsh drops your history so early --- zsh/20-history.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/20-history.zsh b/zsh/20-history.zsh index 4be8aaa..8c49728 100644 --- a/zsh/20-history.zsh +++ b/zsh/20-history.zsh @@ -1,6 +1,6 @@ HISTFILE=~/.histfile -HISTSIZE=1000 -SAVEHIST=1000 +HISTSIZE=100000000 +SAVEHIST=100000000 setopt extended_history setopt hist_expire_dups_first