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; + } + ]; }; }