From 577e43d6dce69f0961d731267a51281b0aeb625b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Mon, 16 Dec 2024 18:48:02 +0200 Subject: [PATCH] Update alacritty keybinds --- program-config-files/alacritty.nix | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/program-config-files/alacritty.nix b/program-config-files/alacritty.nix index ec53209..c3af686 100644 --- a/program-config-files/alacritty.nix +++ b/program-config-files/alacritty.nix @@ -11,9 +11,7 @@ pkgs.writeText "alacritty-conf" '' [keyboard] bindings = [ - {key = "-", mods = "Alt", action = "DecreaseFontSize"}, - {key = "=", mods = "Alt", action = "IncreaseFontSize"}, - {key = "+", mods = "Alt | Shift", action = "ResetFontSize"}, + {key = "+", mods = "Control | Shift", action = "ResetFontSize"}, {key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"}, ] ''