add zoom in and out to terminal, properly

This commit is contained in:
Daniel Løvbrøtte Olsen 2019-07-13 03:01:39 +02:00
parent d10b68c4ec
commit 064e051097
1 changed files with 11 additions and 3 deletions

View File

@ -7,11 +7,20 @@
home.file.kitty = {
target = ".config/kitty/kitty.conf";
text = ''
term xterm-256color
#term xterm-256color
font_family monospace
font_size 12.0
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.ncurses.dev
];
}