diff --git a/home/.config/alacritty/alacritty.yml b/home/.config/alacritty/alacritty.yml index 05c5253..7a226d6 100644 --- a/home/.config/alacritty/alacritty.yml +++ b/home/.config/alacritty/alacritty.yml @@ -100,7 +100,7 @@ font: family: Source code pro # The `style` can be specified to pick a specific face. - #style: Regular + # style: Medium # Bold font face #bold: @@ -502,7 +502,12 @@ font: # at once. key_bindings: # (Windows, Linux, and BSD only) - - { key: 28, mods: Control, chars: "\e[13;5u" } + - { key: Return, mods: Shift, chars: "\e[13;2u" } + - { key: Return, mods: Control, chars: "\e[13;5u" } + - { key: Return, mods: Control|Shift, chars: "\e[13;6u" } + - { key: Tab, mods: Shift, chars: "\e[Z" } + - { key: Tab, mods: Control, chars: "\e[27;5;9~" } + - { key: Tab, mods: Control|Shift, chars: "\e[27;6;9~" } #- { key: V, mods: Control|Shift, action: Paste } #- { key: C, mods: Control|Shift, action: Copy } #- { key: Insert, mods: Shift, action: PasteSelection }