From b8add1f44f8afd4999937452248f0ee9f997b4d3 Mon Sep 17 00:00:00 2001 From: Gabriella Bere Date: Fri, 3 Oct 2025 16:53:05 +0100 Subject: [PATCH] Revert "unbound kitty ctrl+shift+g as it conflicts" This reverts commit 7a964b79cd6378fe3e4d882706e6ede76b4164e4. i was wrong there isnt a conflict, the key i wanted was ctrl+t to go back a search term, which of course on the firefox vim cheatsheet is ctrl+G since ctrl+t is taken by the default new tab keybind --- home-manager/home.nix | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/home-manager/home.nix b/home-manager/home.nix index 875aa0b..b7aa27e 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -75,11 +75,5 @@ # Add support for bluetooth headset media controls services.mpris-proxy.enable = true; - programs.kitty = { - enable = true; - keybindings = { - "ctrl+shift+g" = ""; - }; - }; - + programs.kitty.enable = true; }