add zoom in and out to terminal, properly
This commit is contained in:
parent
d10b68c4ec
commit
064e051097
|
@ -7,11 +7,20 @@
|
||||||
home.file.kitty = {
|
home.file.kitty = {
|
||||||
target = ".config/kitty/kitty.conf";
|
target = ".config/kitty/kitty.conf";
|
||||||
text = ''
|
text = ''
|
||||||
term xterm-256color
|
#term xterm-256color
|
||||||
font_family monospace
|
font_family monospace
|
||||||
font_size 12.0
|
font_size 12.0
|
||||||
background_opacity 0.7
|
background_opacity 0.7
|
||||||
map ctrl+shift+question change_font_size all +2.0
|
|
||||||
|
clear_all_shortcuts yes
|
||||||
|
|
||||||
|
map ctrl+shift+c copy_to_clipboard
|
||||||
|
map ctrl+shift+v paste_from_clipboard
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
map ctrl+plus change_font_size all +2.0
|
||||||
|
map ctrl+shift+plus change_font_size all -2.0
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -21,5 +30,4 @@ map ctrl+shift+question change_font_size all +2.0
|
||||||
pkgs.kitty
|
pkgs.kitty
|
||||||
pkgs.ncurses.dev
|
pkgs.ncurses.dev
|
||||||
];
|
];
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue