Changes
2 changed files (+27/-0)
-
-
@@ -0,0 +1,26 @@{ config, pkgs, ... }: { programs = { # Replacement for a shell history which records additional commands context atuin = { enable = true; enableBashIntegration = false; enableFishIntegration = false; enableNushellIntegration = true; enableZshIntegration = true; settings = { auto_sync = false; show_preview = true; keymap_mode = "vim-normal"; filter_mode_shell_up_key_binding = "directory"; update_check = false; }; }; }; }
-
-
-
@@ -1,6 +1,7 @@{ config, lib, pkgs, ... }: { imports = [ ./atuin.nix ./platform.nix ./neovim.nix ./tmux.nix
-