From a80d394ba7273057b1ab41c03c1b6be4d6ec5052 Mon Sep 17 00:00:00 2001 From: Alex Denes Date: Sun, 2 Jun 2024 19:58:10 +0000 Subject: [PATCH] 10x the history size, it's quite useful --- options.zsh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/options.zsh b/options.zsh index a8aa3b8..eb36a85 100644 --- a/options.zsh +++ b/options.zsh @@ -27,8 +27,8 @@ setopt mark_dirs # Append slash when directories are matched by gl setopt no_match # Error on no matches # History -typeset -g HISTSIZE=1000 -typeset -g SAVEHIST=1000 +typeset -g HISTSIZE=10000 +typeset -g SAVEHIST=10000 setopt append_history # Append to history file setopt extended_history # Duration and timestamp in history setopt no_hist_beep # Don't beep for history searches