From cc38b450ba1d936c16d3cd1b2dd8513820cba84c Mon Sep 17 00:00:00 2001 From: Jeremy Kaplan Date: Tue, 13 Apr 2021 15:40:30 -0700 Subject: [PATCH] alacritty: Fix default config errors --- alacritty/alacritty.yml | 17 ++++++++--------- 1 file changed, 8 insertions(+), 9 deletions(-) diff --git a/alacritty/alacritty.yml b/alacritty/alacritty.yml index 3e04930..c9d5e62 100644 --- a/alacritty/alacritty.yml +++ b/alacritty/alacritty.yml @@ -30,8 +30,8 @@ window: y: 2 # Window decorations - # Setting this to false will result in window without borders and title bar. - decorations: true + # Setting this to None will result in window without borders and title bar. + decorations: Full # Display tabs using this many cells (changes require restart) tabspaces: 8 @@ -68,15 +68,15 @@ font: # Offset is the extra space around each character. offset.y can be thought of # as modifying the linespacing, and offset.x as modifying the letter spacing. offset: - x: 0.0 - y: 0.0 + x: 0 + y: 0 # Glyph offset determines the locations of the glyphs within their cells with # the default being at the bottom. Increase the x offset to move the glyph to # the right, increase the y offset to move the glyph upward. glyph_offset: - x: 0.0 - y: 0.0 + x: 0 + y: 0 # OS X only: use thin stroke font rendering. Thin strokes are suitable # for retina displays, but for non-retina you probably want this set to @@ -157,8 +157,7 @@ colors: # # To completely disable the visual bell, set its duration to 0. # -visual_bell: - animation: EaseOutExpo +bell: duration: 0 # Background opacity @@ -276,7 +275,7 @@ key_bindings: - { key: Insert, mods: Shift, action: PasteSelection } - { key: Key0, mods: Control, action: ResetFontSize } - { key: Equals, mods: Control, action: IncreaseFontSize } - - { key: Subtract, mods: Control, action: DecreaseFontSize } + - { key: Minus, mods: Control, action: DecreaseFontSize } - { key: Home, chars: "\x1bOH", mode: AppCursor } - { key: Home, chars: "\x1b[H", mode: ~AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor }