From 2132807fbd3d4cf22b98b1ee992f8021ae778e95 Mon Sep 17 00:00:00 2001 From: Charlie Root Date: Mon, 16 Sep 2024 21:02:01 +0200 Subject: [PATCH] helix/module.nix: switch from lazygit to gitui --- modules/programs/editors/helix/module.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/programs/editors/helix/module.nix b/modules/programs/editors/helix/module.nix index 0bfc9dc..63d9071 100644 --- a/modules/programs/editors/helix/module.nix +++ b/modules/programs/editors/helix/module.nix @@ -2,6 +2,7 @@ config, lib, self', + pkgs, ... }: let cfg = config.modules.system.programs.editors.helix; @@ -38,7 +39,7 @@ in { }; }; keys.normal = { - C-g = [":new" ":insert-output lazygit" ":buffer-close!" ":redraw"]; + C-g = [":new" ":insert-output ${pkgs.gitui}" ":buffer-close!" ":redraw"]; esc = ["collapse_selection" "keep_primary_selection"]; A-H = "goto_previous_buffer"; A-L = "goto_next_buffer";