feat(kitty): add kitty keybinds for resizing text

This commit is contained in:
Mohammad Rafiq 2025-03-06 13:52:47 +08:00
parent 1307c5ee45
commit 131d214705

View file

@ -1,7 +1,14 @@
{ pkgs, ... }:
{
home.packages = with pkgs; [
kitty # default terminal emulator for hyprland
];
programs.kitty = {
enable = true;
# font = {
# name = "";
# package = ?;
# size = 32;
# };
keybindings = {
"ctrl+equal" = "change_font_size current +2.0";
"ctrl+minus" = "change_font_size current -2.0";
};
};
}