diff options
Diffstat (limited to 'alacritty_macos.yml')
-rw-r--r-- | alacritty_macos.yml | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/alacritty_macos.yml b/alacritty_macos.yml index 9b7b8d1a..82b50f05 100644 --- a/alacritty_macos.yml +++ b/alacritty_macos.yml @@ -96,6 +96,10 @@ font: x: 0 y: 0 + # Scale the font size based on the monitor's DPI. This will lead to bigger text on HiDPI + # screens and make reading text a little easier. + scale_with_dpi: true + # 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 # false. @@ -287,6 +291,8 @@ live_config_reload: true key_bindings: - { key: V, mods: Command, action: Paste } - { key: C, mods: Command, action: Copy } + - { key: Paste, action: Paste } + - { key: Copy, action: Copy } - { key: Q, mods: Command, action: Quit } - { key: W, mods: Command, action: Quit } - { key: Home, chars: "\x1bOH", mode: AppCursor } |