diff options
Diffstat (limited to '.config/alacritty')
-rw-r--r-- | .config/alacritty/alacritty.yml | 19 |
1 files changed, 12 insertions, 7 deletions
diff --git a/.config/alacritty/alacritty.yml b/.config/alacritty/alacritty.yml index 97ea954..8af599d 100644 --- a/.config/alacritty/alacritty.yml +++ b/.config/alacritty/alacritty.yml @@ -1,6 +1,6 @@ -draw_bold_text_with_bright_colors: true +# draw_bold_text_with_bright_colors: true # Set this if using macOS -#alt_send_esc: false +alt_send_esc: false colors: primary: background: '#2e3440' @@ -55,22 +55,22 @@ background_opacity: 1.0 font: # The normal (roman) font face to use. normal: - family: Space Mono Nerd Font + family: SpaceMono Nerd Font # Style can be specified to pick a specific face. style: Regular # The bold font face bold: - family: Space Mono Nerd Font + family: SpaceMono Nerd Font # Style can be specified to pick a specific face. # style: Bold # The italic font face italic: - family: Space Mono Nerd Font + family: SpaceMono Nerd Font # Style can be specified to pick a specific face. # style: Italic - size: 11.0 + size: 14.0 offset: x: 0 @@ -103,6 +103,11 @@ key_bindings: - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } # - { key: Add, mods: Control, action: IncreaseFontSize } - # - { key: Subtract, mods: Control, action: DecreaseFontSize } + # - { key: Subtract, mods: Control, action: DecreaseFontSize } + # Vi mode + - { key: LBracket, mods: Control|Alt, action: ToggleViMode } + - { key: Q, mode: Vi, action: ToggleViMode } + - { key: H, mods: Shift, mode: Vi, action: First } + - { key: L, mods: Shift, mode: Vi, action: Last } - { key: Minus, mods: Control, action: DecreaseFontSize } - { key: N, mods: Control, action: SpawnNewInstance } |