From b160263549c9f9245b2f3913de5857805a12f378 Mon Sep 17 00:00:00 2001 From: Asmir A Date: Sun, 31 May 2026 11:45:42 +0200 Subject: [PATCH] home/zsh: remove fzf zsh plugin as the prog provides it now --- home/common/zsh.nix | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/home/common/zsh.nix b/home/common/zsh.nix index 076d185..d2dc933 100644 --- a/home/common/zsh.nix +++ b/home/common/zsh.nix @@ -10,6 +10,11 @@ enableZshIntegration = true; }; + programs.fzf = { + enable = true; + enableZshIntegration = true; + }; + programs.zsh = { autocd = true; enableCompletion = true; @@ -63,11 +68,6 @@ }; file = "pure.plugin.zsh"; } - { - name = "fzf"; - src = pkgs.fzf-zsh; - file = "share/zsh/plugins/fzf-zsh/fzf-zsh.plugin.zsh"; - } { name = "zsh-sudo"; src = pkgs.oh-my-zsh;