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" - ]; }; }; }