Skip to content

Commit

Permalink
alacritty config updated, gitui keybinds, lfrc updated, fish variable…
Browse files Browse the repository at this point in the history
…s and tmux config
  • Loading branch information
echoriiku committed Nov 19, 2022
1 parent 7d5eb69 commit 025e610
Show file tree
Hide file tree
Showing 231 changed files with 56 additions and 4 deletions.
2 changes: 1 addition & 1 deletion dot_config/alacritty/alacritty.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ colors:
background: "#1f1d2e"
end:
foreground: "#6e6a86"
background: "#1f1d2e"
background: "#1f1d2e"
49 changes: 49 additions & 0 deletions dot_config/gitui/key_bindings.ron
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
// bit for modifiers
// bits: 0 None
// bits: 1 SHIFT
// bits: 2 CONTROL
//
// Note:
// If the default key layout is lower case,
// and you want to use `Shift + q` to trigger the exit event,
// the setting should like this `exit: Some(( code: Char('Q'), modifiers: ( bits: 1,),)),`
// The Char should be upper case, and the shift modified bit should be set to 1.
//
// Note:
// find `KeysList` type in src/keys/key_list.rs for all possible keys.
// every key not overwritten via the config file will use the default specified there
(
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,),)),

open_help: Some(( code: F(1), 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,),)),
popup_up: Some(( code: Char('p'), modifiers: ( bits: 2,),)),
popup_down: Some(( code: Char('n'), modifiers: ( bits: 2,),)),
page_up: Some(( code: Char('b'), modifiers: ( bits: 2,),)),
page_down: Some(( code: Char('f'), modifiers: ( bits: 2,),)),
home: Some(( code: Char('g'), modifiers: ( bits: 0,),)),
end: Some(( code: Char('G'), modifiers: ( bits: 1,),)),
shift_up: Some(( code: Char('K'), modifiers: ( bits: 1,),)),
shift_down: Some(( code: Char('J'), modifiers: ( bits: 1,),)),

edit_file: Some(( code: Char('I'), modifiers: ( bits: 1,),)),

status_reset_item: Some(( code: Char('U'), modifiers: ( bits: 1,),)),

diff_reset_lines: Some(( code: Char('u'), modifiers: ( bits: 0,),)),
diff_stage_lines: Some(( code: Char('s'), modifiers: ( bits: 0,),)),

stashing_save: Some(( code: Char('w'), modifiers: ( bits: 0,),)),
stashing_toggle_index: Some(( code: Char('m'), modifiers: ( bits: 0,),)),

stash_open: Some(( code: Char('l'), modifiers: ( bits: 0,),)),

abort_merge: Some(( code: Char('M'), modifiers: ( bits: 1,),)),
)
2 changes: 1 addition & 1 deletion dot_config/helix/symlink_runtime
Original file line number Diff line number Diff line change
@@ -1 +1 @@
/home/riiku/myrepos/helix/runtime
/home/riiku/repos/helix/runtime
2 changes: 1 addition & 1 deletion dot_config/lf/lfrc
Original file line number Diff line number Diff line change
Expand Up @@ -183,4 +183,4 @@ map au unarchive

# directories aliases
map gc cd ~/.config
map gd cd ~/Files/HD1/Downloads
map gd cd ~/drives/drive_1/Downloads
2 changes: 1 addition & 1 deletion dot_config/private_fish/fish_variables
Original file line number Diff line number Diff line change
Expand Up @@ -81,4 +81,4 @@ SETUVAR fish_pager_color_selected_background:\x1d
SETUVAR fish_pager_color_selected_completion:\x1d
SETUVAR fish_pager_color_selected_description:\x1d
SETUVAR fish_pager_color_selected_prefix:\x1d
SETUVAR fish_user_paths:/home/riiku/\x2espicetify\x1e/home/riiku/\x2edeno/bin\x1e/home/riiku/\x2ecargo/bin\x1e/home/riiku/\x2elocal/bin
SETUVAR fish_user_paths:/home/riiku/\x2enimble/bin\x1e/home/riiku/\x2enim/bin\x1e/home/riiku/\x2espicetify\x1e/home/riiku/\x2edeno/bin\x1e/home/riiku/\x2ecargo/bin\x1e/home/riiku/\x2elocal/bin
3 changes: 3 additions & 0 deletions dot_config/tmux/tmux.conf → dot_tmux.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,8 @@ set -g @dracula-military-time true
set -g @dracula-day-month true
set -g @dracula-show-flags true

# Automatic tpm installation
if "test ! -d ~/.tmux/plugins/tpm" \
"run 'git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm && ~/.tmux/plugins/tpm/bin/install_plugins'"
# Initialize TMUX plugin manager (keep this line at the very bottom of tmux.conf)
run '~/.tmux/plugins/tpm/tpm'
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 025e610

Please sign in to comment.