From 2a3fecfa8b1b1186f662951703a777353a33d239 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Fri, 11 Jul 2025 21:49:20 +0200 Subject: [PATCH] tmux: update binding to lazygit --- nix/homeModules/common/lazygit.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/homeModules/common/lazygit.nix b/nix/homeModules/common/lazygit.nix index 9a4ff0d6..be6c2aef 100644 --- a/nix/homeModules/common/lazygit.nix +++ b/nix/homeModules/common/lazygit.nix @@ -6,6 +6,6 @@ cfg = config.programs.lazygit; in { programs.tmux.extraConfig = lib.mkIf cfg.enable '' - bind -n C-g run-shell "tmux new-window ${lib.getExe cfg.package}" + bind g run-shell "tmux new-window ${lib.getExe cfg.package}" ''; }