From f5db31a4a981af4793c1431fbffa6afc6cf97487 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Thu, 29 May 2025 15:37:01 +0200 Subject: [PATCH] fish: make bindings shell agnostic --- nix/homeModules/common/fish/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/homeModules/common/fish/default.nix b/nix/homeModules/common/fish/default.nix index c47a18d7..d5ce080e 100644 --- a/nix/homeModules/common/fish/default.nix +++ b/nix/homeModules/common/fish/default.nix @@ -23,8 +23,8 @@ in { programs.direnv.config.whitelist.prefix = [(config.home.sessionVariables.REPO_PATH + "/leana8959")]; programs.tmux.extraConfig = lib.mkBefore '' # sessionizer binds - bind -n C-f run-shell "tmux new-window ${fishExe} -c tmux-sessionizer" - bind s run-shell "${fishExe} -c tmux-last" + bind -n C-f run-shell "tmux new-window tmux-sessionizer" + bind s run-shell "tmux-last" ''; programs.kitty.settings.shell = ''${fishExe}'';