commit dee0188a9d902e52cb4c7f4ed2b16e156e88fcca Author: Florian RICHER Date: Tue Apr 12 12:51:18 2022 +0200 Update dotfiles diff --git a/dot_config/gitui/key_bindings.ron b/dot_config/gitui/key_bindings.ron new file mode 100644 index 0000000..0cd9418 --- /dev/null +++ b/dot_config/gitui/key_bindings.ron @@ -0,0 +1,13 @@ +( + focus_right: Some(( code: Char('l'), modifiers: ( bits: 0,),)), + focus_left: Some(( code: Char('h'), modifiers: ( bits: 0,),)), + focus_above: Some(( code: Char('k'), modifiers: ( bits: 0,),)), + focus_below: Some(( code: Char('j'), modifiers: ( bits: 0,),)), + + move_left: Some(( code: Char('h'), modifiers: ( bits: 0,),)), + move_right: Some(( code: Char('l'), modifiers: ( bits: 0,),)), + move_up: Some(( code: Char('k'), modifiers: ( bits: 0,),)), + move_down: Some(( code: Char('j'), modifiers: ( bits: 0,),)), + + open_help: Some(( code: F(1), modifiers: ( bits: 0,),)), +) diff --git a/dot_config/gitui/theme.ron b/dot_config/gitui/theme.ron new file mode 100644 index 0000000..c52beac --- /dev/null +++ b/dot_config/gitui/theme.ron @@ -0,0 +1,19 @@ +( + selected_tab: Reset, + command_fg: White, + selection_bg: Blue, + cmdbar_extra_lines_bg: Blue, + disabled_fg: DarkGray, + diff_line_add: Green, + diff_line_delete: Red, + diff_file_added: LightGreen, + diff_file_removed: LightRed, + diff_file_moved: LightMagenta, + diff_file_modified: Yellow, + commit_hash: Magenta, + commit_time: LightCyan, + commit_author: Green, + danger_fg: Red, + push_gauge_bg: Blue, + push_gauge_fg: Reset, +) \ No newline at end of file