From 18cfe20b502b0a54caa18e0cffd96c9155b76ce5 Mon Sep 17 00:00:00 2001 From: Daniel Kempkens Date: Sat, 16 Dec 2023 13:07:53 +0100 Subject: [PATCH] fzf: disable shell integrations --- home/hosts/Styx.nix | 1 + home/programs/fzf.nix | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/home/hosts/Styx.nix b/home/hosts/Styx.nix index 69d8f44..5dda844 100644 --- a/home/hosts/Styx.nix +++ b/home/hosts/Styx.nix @@ -8,6 +8,7 @@ ../programs/nushell.nix ../programs/atuin.nix ../programs/direnv.nix + ../programs/fzf.nix ../programs/starship.nix ../programs/zoxide.nix diff --git a/home/programs/fzf.nix b/home/programs/fzf.nix index 893bc14..07998d4 100644 --- a/home/programs/fzf.nix +++ b/home/programs/fzf.nix @@ -22,8 +22,8 @@ header = "#6272a4"; }; - enableBashIntegration = true; - enableZshIntegration = true; - enableFishIntegration = true; + enableBashIntegration = false; + enableZshIntegration = false; + enableFishIntegration = false; }; }