dotfiles/modules/darwin/home/programs/ghostty.nix

41 lines
892 B
Nix

{ config, ... }: {
programs.ghostty = {
enable = true;
package = null;
settings = {
theme = "gruvbox";
background-opacity = 0.9;
command =
"shell:${config.home.profileDirectory}/bin/tmux new-session -A -s ghostty";
keybind = [ "cmd+k=text:\\x01K" ];
};
themes.gruvbox = {
background = "282828";
foreground = "ebdbb2";
cursor-color = "ebdbb2";
cursor-text = "282828";
selection-background = "ebdbb2";
selection-foreground = "282828";
palette = [
"0=#282828"
"1=#cc241d"
"2=#98971a"
"3=#d79921"
"4=#458588"
"5=#b16286"
"6=#689d6a"
"7=#a89984"
"8=#928374"
"9=#fb4934"
"10=#b8bb26"
"11=#fabd2f"
"12=#83a598"
"13=#d3869b"
"14=#8ec07c"
"15=#ebdbb2"
];
};
};
}