From d9501b19adb10b36b52f224fd650df1650d04574 Mon Sep 17 00:00:00 2001 From: Ashhhleyyy Date: Fri, 22 Mar 2024 09:52:48 +0000 Subject: [PATCH] feat: add zoxide and fzf --- home/ash/default.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/home/ash/default.nix b/home/ash/default.nix index a9b6467..a0adc21 100644 --- a/home/ash/default.nix +++ b/home/ash/default.nix @@ -17,4 +17,14 @@ keys.normal."C-`" = "switch_to_uppercase"; }; }; + + programs.zoxide = { + enable = true; + enableFishIntegration = true; + }; + + programs.fzf = { + enable = true; + enableFishIntegration = true; + }; }