From 6ca877a3b89bedaef74c26a36fb8c139171dea6c Mon Sep 17 00:00:00 2001 From: Superredstone Date: Tue, 3 Feb 2026 22:43:33 +0100 Subject: [PATCH] Added fzf.fish plugin --- home/fish.nix | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/home/fish.nix b/home/fish.nix index 65c51fc..d5df705 100644 --- a/home/fish.nix +++ b/home/fish.nix @@ -1,4 +1,4 @@ -{ config, pkgs, ... }: +{ pkgs, ... }: { programs.fish = { enable = true; @@ -18,5 +18,11 @@ nix develop --command "fish" end ''; + plugins = with pkgs.fishPlugins; [ + { + name = "fzf.fish"; + src = fzf-fish.src; + } + ]; }; }