Added zoxide

This commit is contained in:
2024-05-05 00:38:35 -03:00
parent ebe07e1a08
commit 413b3f5381
2 changed files with 10 additions and 0 deletions

View File

@@ -17,6 +17,7 @@
./rip.nix ./rip.nix
./starship.nix ./starship.nix
./tldr.nix ./tldr.nix
./zoxide.nix
./zsh ./zsh
]; ];
} }

9
home/shell/zoxide.nix Normal file
View File

@@ -0,0 +1,9 @@
{...}: {
programs.zoxide = {
enable = true;
};
home.shellAliases = {
cd = "z";
};
}