Readded autojump

This commit is contained in:
2023-12-20 09:46:22 -04:00
parent e96fb19078
commit 4c1be5bd45
3 changed files with 7 additions and 2 deletions

5
home/shell/autojump.nix Normal file
View File

@@ -0,0 +1,5 @@
{
programs.autojump = {
enable = true;
};
}

View File

@@ -1,7 +1,8 @@
{...}: { {...}: {
imports = [ imports = [
./atuin.nix
./aria2.nix ./aria2.nix
./atuin.nix
./autojump.nix
./bat.nix ./bat.nix
./bottom.nix ./bottom.nix
./common.nix ./common.nix

View File

@@ -5,6 +5,5 @@
home.shellAliases = { home.shellAliases = {
cd = "z"; cd = "z";
j = "echo 'j is deprecated, use z' && z";
}; };
} }