1
0
Fork 0

alacritty: Fix default config errors

This commit is contained in:
Jeremy Kaplan 2021-04-13 15:40:30 -07:00
commit cc38b450ba

View file

@ -30,8 +30,8 @@ window:
y: 2 y: 2
# Window decorations # Window decorations
# Setting this to false will result in window without borders and title bar. # Setting this to None will result in window without borders and title bar.
decorations: true decorations: Full
# Display tabs using this many cells (changes require restart) # Display tabs using this many cells (changes require restart)
tabspaces: 8 tabspaces: 8
@ -68,15 +68,15 @@ font:
# Offset is the extra space around each character. offset.y can be thought of # 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. # as modifying the linespacing, and offset.x as modifying the letter spacing.
offset: offset:
x: 0.0 x: 0
y: 0.0 y: 0
# Glyph offset determines the locations of the glyphs within their cells with # 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 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. # the right, increase the y offset to move the glyph upward.
glyph_offset: glyph_offset:
x: 0.0 x: 0
y: 0.0 y: 0
# OS X only: use thin stroke font rendering. Thin strokes are suitable # 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 # 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. # To completely disable the visual bell, set its duration to 0.
# #
visual_bell: bell:
animation: EaseOutExpo
duration: 0 duration: 0
# Background opacity # Background opacity
@ -276,7 +275,7 @@ key_bindings:
- { key: Insert, mods: Shift, action: PasteSelection } - { key: Insert, mods: Shift, action: PasteSelection }
- { key: Key0, mods: Control, action: ResetFontSize } - { key: Key0, mods: Control, action: ResetFontSize }
- { key: Equals, mods: Control, action: IncreaseFontSize } - { 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: "\x1bOH", mode: AppCursor }
- { key: Home, chars: "\x1b[H", mode: ~AppCursor } - { key: Home, chars: "\x1b[H", mode: ~AppCursor }
- { key: End, chars: "\x1bOF", mode: AppCursor } - { key: End, chars: "\x1bOF", mode: AppCursor }