Add text scale keybindings to Kitty

This commit is contained in:
Emi Simpson 2024-05-19 10:16:45 -04:00
parent 02e0cb21d5
commit 7090183f8e
Signed by: Emi
GPG key ID: A12F2C2FFDC3D847

View file

@ -61,4 +61,14 @@ pkgs: {
# Roman Siler (Punctuation)
# b4a8c8
};
}
keybindings = {
# Keymappings for zooming
# ctrl+shift * = Reset
# ctrl+shift ( = Shrink
# ctrl+shift ) = Grow
# 'cause 3l breaks the default bindings for this
"ctrl+shift+9" = "change_font_size all -2.0";
"ctrl+shift+0" = "change_font_size all +2.0";
"ctrl+shift+8" = "change_font_size all 0";
};
}