home/alacritty: send alt+z on super+z

This commit is contained in:
2026-01-18 16:18:58 +09:00
parent de84111822
commit 96e74326d3

View File

@@ -17,6 +17,16 @@
size = 12.0;
};
keyboard.bindings = [
# NOTE: Allows for Ctrl+A Super+Z to work as Ctrl+A Alt+Z in tmux,
# very nice for a keyboard with Alt and Super switched.
{
key = "z";
mods = "Super";
chars = "\\u001bz";
}
];
colors =
let
inherit (lib.attrsets) getAttrs filterAttrs;