pantheon/users/modules/programs/kitty.nix
2025-03-11 12:11:08 +08:00

12 lines
241 B
Nix

{
programs.kitty = {
enable = true;
keybindings = {
"ctrl+equal" = "change_font_size current +2.0";
"ctrl+minus" = "change_font_size current -2.0";
};
settings = {
window_padding_width = 10;
};
};
}