From 4c1be5bd45ec412e748c78145d329579c1898556 Mon Sep 17 00:00:00 2001 From: Thomas Syms Date: Wed, 20 Dec 2023 09:46:22 -0400 Subject: [PATCH] Readded autojump --- home/shell/autojump.nix | 5 +++++ home/shell/default.nix | 3 ++- home/shell/zoxide.nix | 1 - 3 files changed, 7 insertions(+), 2 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..0c04908 --- /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 b3a4e79..4a3e563 100644 --- a/home/shell/default.nix +++ b/home/shell/default.nix @@ -1,7 +1,8 @@ {...}: { imports = [ - ./atuin.nix ./aria2.nix + ./atuin.nix + ./autojump.nix ./bat.nix ./bottom.nix ./common.nix diff --git a/home/shell/zoxide.nix b/home/shell/zoxide.nix index 6ed2918..42118de 100644 --- a/home/shell/zoxide.nix +++ b/home/shell/zoxide.nix @@ -5,6 +5,5 @@ home.shellAliases = { cd = "z"; - j = "echo 'j is deprecated, use z' && z"; }; }