Skip to content

Commit

Permalink
feat: use zoxide as a cd alias
Browse files Browse the repository at this point in the history
  • Loading branch information
mrnossiom committed Feb 29, 2024
1 parent 729b39c commit fb45fa6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions home-manager/modules/shell.nix
Expand Up @@ -130,6 +130,10 @@ with lib;
'';
};

programs.zoxide = {
enable = true;
options = [ "--cmd cd" ];
};

programs.fish = {
enable = true;
Expand Down Expand Up @@ -177,11 +181,6 @@ with lib;
ld = "ls -FD";
tree = "ls -T";

# Renamed tools
grep = "rg";
cat = "bat";
diff = "delta";

# Nix-related
ur = " unlink result";

Expand Down

0 comments on commit fb45fa6

Please sign in to comment.