diff options
author | jjanzen <jjanzen@jjanzen.ca> | 2025-01-08 17:24:21 -0600 |
---|---|---|
committer | jjanzen <jjanzen@jjanzen.ca> | 2025-01-08 17:24:21 -0600 |
commit | a75b69b88f967e6271d75a1bc122da0b2e4eeece (patch) | |
tree | 20b7fb1bec30f68e61846c45a481bee174f4af9f /macos.local/.flake/home/programs/ghostty.nix.org | |
parent | a1cbc273fb92c69ea1b8534f6ef6064b5da40e31 (diff) |
system changes
Diffstat (limited to 'macos.local/.flake/home/programs/ghostty.nix.org')
-rw-r--r-- | macos.local/.flake/home/programs/ghostty.nix.org | 28 |
1 files changed, 14 insertions, 14 deletions
diff --git a/macos.local/.flake/home/programs/ghostty.nix.org b/macos.local/.flake/home/programs/ghostty.nix.org index ccfdae3..29bc15a 100644 --- a/macos.local/.flake/home/programs/ghostty.nix.org +++ b/macos.local/.flake/home/programs/ghostty.nix.org @@ -1,23 +1,23 @@ -#+title: GhosTTY Configuration +#+title: ghostty Configuration -This terminal emulator seems over-hyped, but I'm trying it anyways. +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 + 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 ''; } #+end_src |