From d6c7d628c18099fc71890fb277e3cf6b995263c6 Mon Sep 17 00:00:00 2001 From: Myned Date: Tue, 15 Oct 2024 18:06:58 -0500 Subject: [PATCH] kitty: modify theme Signed-off-by: Myned --- options/custom/programs/kitty.nix | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/options/custom/programs/kitty.nix b/options/custom/programs/kitty.nix index fd5fa14..37e01d5 100644 --- a/options/custom/programs/kitty.nix +++ b/options/custom/programs/kitty.nix @@ -13,6 +13,7 @@ in { # https://github.com/kovidgoyal/kitty programs.kitty = { enable = true; + shellIntegration.mode = "no-cursor"; # Disable forced beam cursor font = { name = config.custom.font.monospace; @@ -26,8 +27,8 @@ in { inactive_tab_font_style = "normal"; confirm_os_window_close = 0; cursor_blink_interval = 0; - cursor_shape = "beam"; - cursor_shape_unfocused = "underline"; + cursor_shape = "block"; + cursor_shape_unfocused = "hollow"; placement_strategy = "top-left"; # Partially fix padding scrollback_lines = -1; strip_trailing_spaces = "smart"; @@ -40,15 +41,15 @@ in { # Solarized Dark colors # https://ethanschoonover.com/solarized/ #?? kitten themes - cursor = "none"; # Invert colors + cursor = "none"; # Inherit text tcolor background = "#002b36"; foreground = "#839496"; active_tab_background = "#93a1a1"; active_tab_foreground = "#002b36"; inactive_tab_background = "#586e75"; inactive_tab_foreground = "#002b36"; - selection_background = "#073642"; # Affects scrollbar color - selection_foreground = "none"; + selection_background = "#586e75"; # Affects scrollbar color + selection_foreground = "#002b36"; url_color = "#586e75"; color0 = "#073642";