From 942a5ffb04bccafd5e4880af2bee2dc5a4f04ab4 Mon Sep 17 00:00:00 2001 From: Simon Bruder Date: Wed, 14 Apr 2021 21:55:49 +0200 Subject: [PATCH] zsh: Increase history size to 100000 --- users/simon/modules/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/users/simon/modules/zsh.nix b/users/simon/modules/zsh.nix index 6d949af..9a2ee0b 100644 --- a/users/simon/modules/zsh.nix +++ b/users/simon/modules/zsh.nix @@ -37,6 +37,10 @@ in }; zsh = { enable = true; + history = { + save = 100000; + size = 100000; + }; plugins = [ { name = "zsh-nix-shell";