From 38ce41eea4624d1b6063c9a1ca9936320d00df33 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Fri, 25 Oct 2024 12:35:38 +0200 Subject: [PATCH] helix/module.nix: change keybind --- modules/programs/editors/helix/module.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/programs/editors/helix/module.nix b/modules/programs/editors/helix/module.nix index 9f5bc08..425a6d0 100644 --- a/modules/programs/editors/helix/module.nix +++ b/modules/programs/editors/helix/module.nix @@ -45,7 +45,7 @@ in { }; }; keys.normal = { - C-g = [":new" ":insert-output ${getExe pkgs.lazygit}" ":buffer-close!" ":redraw"]; + space.g = [":new" ":insert-output ${getExe pkgs.lazygit}" ":buffer-close!" ":redraw"]; esc = ["collapse_selection" "keep_primary_selection" "normal_mode"]; A-H = "goto_previous_buffer"; A-L = "goto_next_buffer";