From 0ee55c32078dc7fd3b10974e1ebfe6f5429da0cc Mon Sep 17 00:00:00 2001 From: Noah Knegt Date: Fri, 28 Feb 2025 19:01:46 +0100 Subject: [PATCH] Always append to the history of zsh --- home-manager/zsh/zsh.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/home-manager/zsh/zsh.nix b/home-manager/zsh/zsh.nix index 6453177..d5bdd9a 100644 --- a/home-manager/zsh/zsh.nix +++ b/home-manager/zsh/zsh.nix @@ -5,5 +5,9 @@ enable = true; autosuggestion.enable = true; + + history = { + append = true; + }; }; } \ No newline at end of file