Fix font size in alacritty

This commit is contained in:
Colin Powell
2019-05-29 22:01:39 -04:00
parent fc6fedab75
commit be1bef86e5

View File

@ -98,7 +98,7 @@ font:
#style: Italic
# Point size
size: 12.0
size: 10.0
# Offset is the extra space around each character. `offset.y` can be thought of
# as modifying the line spacing, and `offset.x` as modifying the letter spacing.
@ -386,8 +386,6 @@ key_bindings:
- { key: End, chars: "\x1bOF", mode: AppCursor }
- { key: End, chars: "\x1b[F", mode: ~AppCursor }
- { key: Key0, mods: Command, action: ResetFontSize }
- { key: Equals, mods: Command, action: IncreaseFontSize }
- { key: Minus, mods: Command, action: DecreaseFontSize }
- { key: K, mods: Command, action: ClearHistory }
- { key: K, mods: Command, chars: "\x0c" }
- { key: PageUp, mods: Shift, chars: "\x1b[5;2~" }
@ -484,5 +482,5 @@ key_bindings:
- { key: NumpadEnter, chars: "\n" }
- { key: N, mods: Command, action: SpawnNewInstance }
- { key: Key0, mods: Command, action: ResetFontSize }
- { key: Equals, mods: Command, action: IncreaseFontSize }
- { key: Minus, mods: Command, action: DecreaseFontSize }
- { key: Equals, mods: Shift|Control, action: IncreaseFontSize }
- { key: Minus, mods: Shift|Control, action: DecreaseFontSize }