From 94877b6b0b7738c27ed082e5ed5bbf878d62d683 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9ana=20=E6=B1=9F?= Date: Sat, 3 Jan 2026 11:15:21 +0100 Subject: [PATCH] home/ghostty: increase cursor thickness --- nix/homeModules/common/ghostty.nix | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/nix/homeModules/common/ghostty.nix b/nix/homeModules/common/ghostty.nix index 344d13fa..54bdcfe6 100644 --- a/nix/homeModules/common/ghostty.nix +++ b/nix/homeModules/common/ghostty.nix @@ -14,11 +14,20 @@ in ]; programs.ghostty.settings = { + # Declutter gtk-titlebar = false; window-decoration = "none"; + confirm-close-surface = false; + # Fonts font-family = "Iosevka NFM"; + adjust-cursor-thickness = 2; + keybind = [ + "ctrl+shift+==increase_font_size:1" + "ctrl+-=decrease_font_size:1" + ]; + # Theme background = "#fdf6e3"; foreground = "#073642"; palette = [ @@ -39,13 +48,6 @@ in "14=#4bccc1" # a platupus? perry the platupus? "15=#eeeadd" ]; - - confirm-close-surface = false; - - keybind = [ - "ctrl+shift+==increase_font_size:1" - "ctrl+-=decrease_font_size:1" - ]; }; }; }