From aad55e3a38d07a34294cc5e3dd733c0a19d823c5 Mon Sep 17 00:00:00 2001 From: punkfairie Date: Mon, 28 Oct 2024 20:30:12 -0700 Subject: [PATCH] =?UTF-8?q?=E2=9C=A8=20feat(fish):=20Fish=20improvements?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- home/fish/default.nix | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) 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"]; + }; }