diff options
| author | Robert Günzler <r@gnzler.io> | 2020-12-03 12:57:58 +0100 |
|---|---|---|
| committer | Robert Günzler <r@gnzler.io> | 2020-12-07 19:28:05 +0100 |
| commit | 2c1ccb5c21eb362c5b6ec013cf964dcfe9685e84 (patch) | |
| tree | d3f8cad7c708758670af95762ad5f5c5d019b180 /.config/alacritty/base.ovl.yml | |
| parent | 0eb11ed2c3dc235349b87d20bf657f2fb9729994 (diff) | |
alacritty: adapt 0.7.0 changes
Diffstat (limited to '.config/alacritty/base.ovl.yml')
| -rw-r--r-- | .config/alacritty/base.ovl.yml | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/.config/alacritty/base.ovl.yml b/.config/alacritty/base.ovl.yml index 3c94561..7e07dce 100644 --- a/.config/alacritty/base.ovl.yml +++ b/.config/alacritty/base.ovl.yml @@ -2,10 +2,9 @@ window: decorations: none font: - size: 13.0 + size: 12.0 normal: - family: Iosevka SS05 - # family: Cozette Vector + family: Iosevka SS14 style: Slim bold: @@ -15,11 +14,8 @@ font: bold_italic: style: Bold Italic -visual_bell: - duration: 0 - color: '#af005f' - -background_opacity: 0.99 +draw_bold_text_with_bright_colors: true +background_opacity: 0.95 mouse: url: @@ -27,8 +23,16 @@ mouse: program: url-launcher modifiers: Control +bell: + duration: 0 + color: '#af005f' key_bindings: - - { key: 'N', mods: 'Super|Shift', action: 'SpawnNewInstance' } - - { key: 'PageUp', mods: 'Alt', action: 'ScrollPageUp' } - - { key: 'PageDown', mods: 'Alt', action: 'ScrollPageDown' } + - { key: 'N', mods: 'Super|Shift', action: 'SpawnNewInstance' } + - { key: 'PageUp', mods: 'Alt', action: 'ScrollPageUp' } + - { key: 'PageDown', mods: 'Alt', action: 'ScrollPageDown' } + - { key: 'Space', mods: 'Alt|Control', action: 'ToggleViMode' } + - { key: 'I', action: 'ToggleViMode', mode: 'Vi' } + - { key: 'Escape', action: 'ToggleViMode', mode: 'Vi' } + - { key: 'Slash', mods: 'Alt', action: 'SearchForward', mode: 'Vi' } + - { key: 'Slash', action: 'SearchBackward', mode: 'Vi' } |