From b3b27c5b5660189335d41cea08b60e7bd6547178 Mon Sep 17 00:00:00 2001 From: John Lancaster <32917998+jsl12@users.noreply.github.com> Date: Thu, 3 Jul 2025 04:36:11 +0000 Subject: [PATCH] history options --- homeManagerModules/shell.nix | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/homeManagerModules/shell.nix b/homeManagerModules/shell.nix index 0fe3591..fdb83c3 100644 --- a/homeManagerModules/shell.nix +++ b/homeManagerModules/shell.nix @@ -11,6 +11,18 @@ enableCompletion = true; autosuggestion.enable = true; # syntaxHighlighting.enable = true; + history = { + append = true; + ignoreAllDups = true; + ignorePatterns = [ + "history" + "ls" + "clear" + ]; + save = 1000; + size = 1000; + share = true; + }; oh-my-zsh = { enable = true; theme = "risto";