feat(kitty): add kitty keybinds for resizing text
This commit is contained in:
parent
1307c5ee45
commit
131d214705
1 changed files with 12 additions and 5 deletions
|
@ -1,7 +1,14 @@
|
||||||
{ pkgs, ... }:
|
|
||||||
|
|
||||||
{
|
{
|
||||||
home.packages = with pkgs; [
|
programs.kitty = {
|
||||||
kitty # default terminal emulator for hyprland
|
enable = true;
|
||||||
];
|
# font = {
|
||||||
|
# name = "";
|
||||||
|
# package = ?;
|
||||||
|
# size = 32;
|
||||||
|
# };
|
||||||
|
keybindings = {
|
||||||
|
"ctrl+equal" = "change_font_size current +2.0";
|
||||||
|
"ctrl+minus" = "change_font_size current -2.0";
|
||||||
|
};
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue