feat(homes/rafiq/cli): add zoxide

This commit is contained in:
Mohammad Rafiq 2025-05-18 18:28:45 +08:00
parent d60030ed5d
commit ee129ea287
No known key found for this signature in database

View file

@ -4,6 +4,19 @@
./programs/git.nix
./programs/zsh.nix
];
home.sessionVariables = {
EDITOR = "nvim";
};
home.shellAliases = {
edit = "nvim $(fzf)";
};
programs.zoxide.enable = true;
programs.nix-index.enable = true;
programs.nix-index-database.comma.enable = true;
home.packages = with pkgs; [
neovim
ripgrep
@ -20,15 +33,4 @@
git commit -a
'')
];
home.sessionVariables = {
EDITOR = "nvim";
};
home.shellAliases = {
edit = "nvim $(fzf)";
};
programs.nix-index.enable = true;
programs.nix-index-database.comma.enable = true;
}