From 2f0a2cc27bb7e99ddb780e84a2c655f8e8c8111c Mon Sep 17 00:00:00 2001 From: Colin Date: Tue, 9 Sep 2025 22:54:26 +0000 Subject: [PATCH] alacritty: disable the annoying Ctrl+Shift+Space shortcut --- hosts/common/programs/alacritty.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/hosts/common/programs/alacritty.nix b/hosts/common/programs/alacritty.nix index 6f77d5783..ce090f5c2 100644 --- a/hosts/common/programs/alacritty.nix +++ b/hosts/common/programs/alacritty.nix @@ -54,6 +54,12 @@ in key = "PageDown" action = "ScrollPageDown" + [[keyboard.bindings]] + # disable builtin Ctrl+Shift+Space => visual selection binding + mods = "Control|Shift" + key = "Space" + action = "None" + # disable OS shortcuts which leak through... # see sway config or sane-input-handler for more info on why these leak through [[keyboard.bindings]]