From 396aef2140f6fbbd2e756ac4cb742f6475769912 Mon Sep 17 00:00:00 2001 From: Colin Powell Date: Wed, 29 May 2019 03:21:20 -0400 Subject: [PATCH] Bump font in alacritty and make pasting work --- alacritty/.config/alacritty/alacritty.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/alacritty/.config/alacritty/alacritty.yml b/alacritty/.config/alacritty/alacritty.yml index b3e72f6..0acd97d 100644 --- a/alacritty/.config/alacritty/alacritty.yml +++ b/alacritty/.config/alacritty/alacritty.yml @@ -98,7 +98,7 @@ font: #style: Italic # Point size - size: 08.0 + size: 12.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. @@ -374,8 +374,8 @@ live_config_reload: true # - ~AppKeypad # - AppKeypad key_bindings: - - { key: V, mods: Command, action: Paste } - - { key: C, mods: Command, action: Copy } + - { key: V, mods: Shift|Control, action: Paste } + - { key: C, mods: Shift|Control, action: Copy } - { key: Paste, action: Paste } - { key: Copy, action: Copy } - { key: H, mods: Command, action: Hide } @@ -482,7 +482,7 @@ key_bindings: - { key: F11, mods: Command, chars: "\x1b[23;3~" } - { key: F12, mods: Command, chars: "\x1b[24;3~" } - { key: NumpadEnter, chars: "\n" } - - { key: N, mods: Command, command: { program: "open", args: ["-nb", "io.alacritty"] } } + - { key: N, mods: Command, action: SpawnNewInstance } - { key: Key0, mods: Command, action: ResetFontSize } - { key: Equals, mods: Command, action: IncreaseFontSize } - { key: Minus, mods: Command, action: DecreaseFontSize }