From 14db5e1902f3d1200fb6effbfaac7b5bfda21c26 Mon Sep 17 00:00:00 2001 From: Dmytro Meleshko Date: Thu, 24 Jun 2021 18:45:47 +0300 Subject: [PATCH] [zsh] increase the size of the history file --- zsh/options.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/zsh/options.zsh b/zsh/options.zsh index 3679194..c99bcbf 100644 --- a/zsh/options.zsh +++ b/zsh/options.zsh @@ -40,9 +40,9 @@ setopt complete_in_word # strangely enough, Zsh doesn't save command history by default HISTFILE="${HISTFILE:-$HOME/.zsh_history}" # max number of entries stored in memory -HISTSIZE=50000 +HISTSIZE=100000 # max number of entries in the HISTFILE -SAVEHIST=10000 +SAVEHIST=80000 # record timestamps in the history setopt extended_history # delete duplicates first when HISTFILE size exceeds HISTSIZE