From 064e0510973aa9550fe9fd2f31ff132b62fbdd4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20L=C3=B8vbr=C3=B8tte=20Olsen?= Date: Sat, 13 Jul 2019 03:01:39 +0200 Subject: [PATCH] add zoom in and out to terminal, properly --- config/xsession/terminal.nix | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/config/xsession/terminal.nix b/config/xsession/terminal.nix index 1da7355..e5eac1c 100644 --- a/config/xsession/terminal.nix +++ b/config/xsession/terminal.nix @@ -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 ]; - }