From 497990316a1c85ea4809f09aa757e6ec5f594929 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vili=20Sinerv=C3=A4?= Date: Wed, 11 Dec 2024 01:53:44 +0200 Subject: [PATCH] Change font size keybinds for alacritty --- program-config-files/alacritty.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/program-config-files/alacritty.nix b/program-config-files/alacritty.nix index 9dcf016..ec53209 100644 --- a/program-config-files/alacritty.nix +++ b/program-config-files/alacritty.nix @@ -12,8 +12,8 @@ pkgs.writeText "alacritty-conf" '' [keyboard] bindings = [ {key = "-", mods = "Alt", action = "DecreaseFontSize"}, - {key = "+", mods = "Alt | Shift", action = "IncreaseFontSize"}, - {key = "=", mods = "Alt", action = "ResetFontSize"}, + {key = "=", mods = "Alt", action = "IncreaseFontSize"}, + {key = "+", mods = "Alt | Shift", action = "ResetFontSize"}, {key = "Enter", mods = "Alt | Shift", action = "SpawnNewInstance"}, ] ''