diff --git a/home/fish/default.nix b/home/fish/default.nix index fc5acd0..2fd9e53 100644 --- a/home/fish/default.nix +++ b/home/fish/default.nix @@ -1,8 +1,11 @@ {pkgs, ...}: { + home.packages = with pkgs; [ + babelfish + ]; + programs.fish = { enable = true; - useBabelfish = true; preferAbbrs = true; plugins = with pkgs.fishPlugins; [ @@ -24,4 +27,10 @@ } ]; }; + + programs.zoxide = { + enable = true; + + options = ["--cmd cd"]; + }; }