From 937f9c6d104b97b8ac1c35157e3677a02c39f5ee Mon Sep 17 00:00:00 2001 From: Ahwx Date: Fri, 21 Jun 2024 09:48:00 +0200 Subject: [PATCH] feat: set font and remove unused bindings --- modules/home/kitty.nix | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/modules/home/kitty.nix b/modules/home/kitty.nix index e17c3fb..8f953e7 100644 --- a/modules/home/kitty.nix +++ b/modules/home/kitty.nix @@ -1,4 +1,4 @@ -{ pkgs, ... }: +{ ... }: { programs.kitty = { enable = true; @@ -7,7 +7,7 @@ font = { name = "JetBrainsMono Nerd Font"; - size = 13; + size = 9; }; settings = { @@ -31,15 +31,9 @@ }; keybindings = { - ## Tabs - "alt+1" = "goto_tab 1"; - "alt+2" = "goto_tab 2"; - "alt+3" = "goto_tab 3"; - "alt+4" = "goto_tab 4"; - ## Unbind "ctrl+shift+left" = "no_op"; "ctrl+shift+right" = "no_op"; }; }; -} \ No newline at end of file +}