diff --git a/home/cli.nix b/home/cli.nix index 57a1320..8aab14b 100644 --- a/home/cli.nix +++ b/home/cli.nix @@ -61,6 +61,20 @@ options = [ "--cmd cd" ]; }; + # Atuin - encrypted shell history with sync + programs.atuin = { + enable = true; + enableZshIntegration = true; + settings = { + auto_sync = true; + sync_frequency = "5m"; + search_mode = "fuzzy"; + style = "compact"; + show_preview = true; + exit_mode = "return-query"; + }; + }; + # Bat - cat with syntax highlighting programs.bat = { enable = true;