From b90d6ecb7959b779e634fcbf4beb0712ae4d5d98 Mon Sep 17 00:00:00 2001 From: Alexander Bantyev Date: Sat, 22 Aug 2020 11:09:44 +0300 Subject: [PATCH] Increase history size --- modules/workspace/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/modules/workspace/zsh.nix b/modules/workspace/zsh.nix index 76253ce..99eeb92 100755 --- a/modules/workspace/zsh.nix +++ b/modules/workspace/zsh.nix @@ -11,6 +11,10 @@ theme = "agnoster"; plugins = [ "git" "dirhistory" ]; }; + history = rec { + size = 1000000; + save = size; + }; plugins = [ { name = "zsh-nix-shell";