From ea889998013b738bdbad00572382b56a630809e5 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Thu, 7 Nov 2024 10:58:20 -0400 Subject: [PATCH] Switched back to autojump from zoxide --- home/shell/autojump.nix | 5 +++++ home/shell/default.nix | 1 + home/shell/zoxide.nix | 3 --- 3 files changed, 6 insertions(+), 3 deletions(-) create mode 100644 home/shell/autojump.nix diff --git a/home/shell/autojump.nix b/home/shell/autojump.nix new file mode 100644 index 0000000..31128dc --- /dev/null +++ b/home/shell/autojump.nix @@ -0,0 +1,5 @@ +{...}: { + programs.autojump = { + enable = true; + }; +} diff --git a/home/shell/default.nix b/home/shell/default.nix index 1ab6afc..70c1c49 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -2,6 +2,7 @@ imports = [ ./aria2.nix ./atuin.nix + ./autojump.nix ./bat.nix ./bottom.nix ./btop.nix diff --git a/home/shell/zoxide.nix b/home/shell/zoxide.nix index d9fabf8..65ce210 100644 --- a/home/shell/zoxide.nix +++ b/home/shell/zoxide.nix @@ -3,9 +3,6 @@ enable = true; }; - home.shellAliases = { - j = "z"; - }; programs.nushell.shellAliases = { j = "z"; };