feat(zoxide): add zoxide and add cd alias to it

This commit is contained in:
Mohammad Rafiq 2025-03-22 16:41:48 +08:00
parent 8862fca28a
commit 717efa8db7
No known key found for this signature in database
2 changed files with 8 additions and 0 deletions

View file

@ -0,0 +1,6 @@
{
programs.zoxide = {
enable = true;
};
}

View file

@ -11,6 +11,7 @@
./programs/yazi.nix ./programs/yazi.nix
./programs/zellij.nix ./programs/zellij.nix
./programs/zsh.nix ./programs/zsh.nix
./programs/zoxide.nix
./programs/thefuck.nix ./programs/thefuck.nix
./scripts ./scripts
]; ];
@ -18,6 +19,7 @@
home.shellAliases = { home.shellAliases = {
gs = "git status"; gs = "git status";
ai = "aichat -r %shell% -e"; ai = "aichat -r %shell% -e";
cd = "z";
}; };
editorconfig = { editorconfig = {
enable = true; enable = true;