my system configurations ^-^
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat(gitui): keymap

willow 6622c9ba 2f0a1057

+15 -1
+15 -1
modules/shared/home/programs/tui/gitui.nix
··· 7 7 in { 8 8 config = lib.mkIf (cfg.tui.enable 9 9 && cfg.categories.dev.enable) { 10 - programs.gitui.enable = true; 10 + programs.gitui = { 11 + enable = true; 12 + 13 + keyConfig = '' 14 + ( 15 + move_left: Some(( code: Char('n'), modifiers: "" )), 16 + move_down: Some(( code: Char('e'), modifiers: "" )), 17 + move_up: Some(( code: Char('i'), modifiers: "" )), 18 + move_right: Some(( code: Char('o'), modifiers: "" )), 19 + status_ignore_file: Some(( code: Char('g'), modifiers: "" )), 20 + edit_file: Some(( code: Char('m'), modifiers: "" )), 21 + open_options: Some(( code: Esc, modifiers: "" )), 22 + ) 23 + ''; 24 + }; 11 25 }; 12 26 }