Skip to content

Commit e5a6076

Browse files
committed
gitui: theme and keybindings
1 parent 446793e commit e5a6076

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

gitui/.config/gitui/key_bindings.ron

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@
2828
popup_down: Some(( code: Char('n'), modifiers: ( bits: 2,),)),
2929
page_up: Some(( code: Char('b'), modifiers: ( bits: 2,),)),
3030
page_down: Some(( code: Char('f'), modifiers: ( bits: 2,),)),
31+
home: Some(( code: Char('g'), modifiers: ( bits: 0,),)),
32+
end: Some(( code: Char('G'), modifiers: ( bits: 1,),)),
3133
shift_up: Some(( code: Char('K'), modifiers: ( bits: 1,),)),
3234
shift_down: Some(( code: Char('J'), modifiers: ( bits: 1,),)),
3335

gitui/.config/gitui/theme.ron

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22
selected_tab: Yellow,
33
command_fg: White,
44
selection_bg: Black,
5+
selection_fg: White,
6+
cmdbar_bg: Black,
57
cmdbar_extra_lines_bg: Black,
68
disabled_fg: DarkGray,
79
diff_line_add: Green,
@@ -16,4 +18,6 @@
1618
danger_fg: Red,
1719
push_gauge_bg: Black,
1820
push_gauge_fg: Reset,
21+
tag_fg: LightMagenta,
22+
branch_fg: LightYellow,
1923
)

0 commit comments

Comments
 (0)