소스 검색

Fix font size in alacritty

Colin Powell 6 년 전
부모
커밋
be1bef86e5
1개의 변경된 파일3개의 추가작업 그리고 5개의 파일을 삭제
  1. 3 5
      alacritty/.config/alacritty/alacritty.yml

+ 3 - 5
alacritty/.config/alacritty/alacritty.yml

@@ -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 }