#+title: ghostty Configuration I use =ghostty= as a terminal emulator on macOS. I disable auto-update and set some sensible options. #+begin_src nix { config, pkgs, ... }: { home.file."./.config/ghostty/config".text = '' auto-update = "off" background-blur-radius = 20 background-opacity = 0.8 clipboard-trim-trailing-spaces = true font-family = "SauceCodePro Nerd Font" font-thicken = true macos-option-as-alt = true macos-window-shadow = false mouse-hide-while-typing = true quit-after-last-window-closed = true theme = "Builtin Light" window-decoration = true palette = 0=#ffffff palette = 1=#a60000 palette = 2=#006800 palette = 3=#6f5500 palette = 4=#0031a9 palette = 5=#721045 palette = 6=#005e8b palette = 7=#000000 palette = 8=#f2f2f2 palette = 9=#d00000 palette = 10=#008900 palette = 11=#808000 palette = 12=#0000ff palette = 13=#dd22dd palette = 14=#008899 palette = 15=#595959 background = #ffffff foreground = #000000 cursor-color = #000000 selection-background = #dfa0f0 selection-foreground = #000000 ''; } #+end_src