ghostty config

This commit is contained in:
2025-12-26 15:18:13 +01:00
parent b61a4d30dc
commit f6ad8815e3

View File

@@ -1,22 +1,18 @@
{pkgs, ...}: { {pkgs, ...}: {
programs.ghostty = { xdg.configFile."ghostty/config".text = ''
enable = true; command = ${pkgs.fish}/bin/fish
package = pkgs.emptyDirectory; theme = Catppuccin Latte
settings = { window-padding-x = 12
command = "${pkgs.fish}/bin/fish"; window-padding-y = 3
theme = "Catppuccin Latte"; window-padding-balance = true
window-padding-x = 12; font-family = TX-02
window-padding-y = 3; font-size = 16.5
window-padding-balance = true; cursor-style = block
font-family = "TX-02 SemiCondensed"; mouse-hide-while-typing = true
font-size = 16.5; mouse-scroll-multiplier = 1.25
cursor-style = "block"; shell-integration = detect
mouse-hide-while-typing = true; shell-integration-features = no-cursor
mouse-scroll-multiplier = 1.25; clipboard-read = allow
shell-integration = "detect"; clipboard-write = allow
shell-integration-features = "no-cursor"; '';
clipboard-read = "allow";
clipboard-write = "allow";
};
};
} }