feat: add zoxide integration with fish

This commit is contained in:
Zhongheng Liu 2024-08-11 20:27:55 +08:00
commit 5fbc081c46
No known key found for this signature in database
3 changed files with 13 additions and 3 deletions

View file

@ -0,0 +1,12 @@
{
pkgs,
config,
lib,
...
}: {
programs.zoxide = {
enable = true;
enableZshIntegration = config.myShells.zsh.enable;
enableFishIntegration = config.myShells.fish.enable;
};
}