From aaf78e1df9cc5055731542d6a0296576ce900fc3 Mon Sep 17 00:00:00 2001 From: Daniel Siepmann Date: Wed, 26 Apr 2023 09:22:39 +0200 Subject: [PATCH] Raise history size of zsh That allows to also recall commands not executed for a long time. --- home/programs/zsh.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/home/programs/zsh.nix b/home/programs/zsh.nix index c13fee5..03f0af0 100644 --- a/home/programs/zsh.nix +++ b/home/programs/zsh.nix @@ -21,8 +21,8 @@ }; history = { - size = 10000; - save = 10000; + size = 100000; + save = 100000; ignoreDups = true; ignoreSpace = true; extended = true;