From e0fa61f16d702bc394042fb009e80216e345b38f Mon Sep 17 00:00:00 2001 From: Jacob Bachmann Date: Thu, 29 Aug 2024 12:27:58 +0200 Subject: [PATCH] feat(kitty): use legacy font rendering for dark text on light background --- users/gandalf/modules/gui/programs/kitty.nix | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/users/gandalf/modules/gui/programs/kitty.nix b/users/gandalf/modules/gui/programs/kitty.nix index 81f826d..87d0108 100644 --- a/users/gandalf/modules/gui/programs/kitty.nix +++ b/users/gandalf/modules/gui/programs/kitty.nix @@ -52,8 +52,13 @@ in enable = true; font.name = common.font; font.size = 12; + shellIntegration = { + enableBashIntegration = true; + enableZshIntegration = true; + }; extraConfig = '' include ${kitty-theme-patched}/share/kitty-themes/themes/Alabaster.conf + text_composition_strategy legacy ''; }; }