From a544e78107d5836f1525d6e6fcaacde677d6df57 Mon Sep 17 00:00:00 2001 From: David Heinemeier Hansson Date: Thu, 9 Oct 2025 07:16:12 -0400 Subject: [PATCH] Add Ctrl + Super + Ins as Copy So we can hook it up to super + C/V --- config/alacritty/alacritty.toml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/config/alacritty/alacritty.toml b/config/alacritty/alacritty.toml index 219f3be4..f7a4df9a 100644 --- a/config/alacritty/alacritty.toml +++ b/config/alacritty/alacritty.toml @@ -17,5 +17,6 @@ decorations = "None" [keyboard] bindings = [ { key = "F11", action = "ToggleFullscreen" }, -{ key = "Insert", mods = "Shift", action = "Paste" } +{ key = "Insert", mods = "Shift", action = "Paste" }, +{ key = "Insert", mods = "Control", action = "Copy" } ]