57 lines
1.4 KiB
Nix
57 lines
1.4 KiB
Nix
{
|
|
programs.ghostty = {
|
|
enable = true;
|
|
enableFishIntegration = true;
|
|
package = null;
|
|
settings = {
|
|
font-size = 18;
|
|
font-family = "Victor Mono";
|
|
font-style = "SemiBold";
|
|
background-opacity = 0.945;
|
|
window-padding-x = 0;
|
|
window-padding-y = 0;
|
|
window-padding-balance = true;
|
|
window-inherit-working-directory = true;
|
|
window-theme = "ghostty";
|
|
shell-integration-features = true;
|
|
scrollback-limit = 100000;
|
|
link-url = true;
|
|
link-previews = true;
|
|
title = " ";
|
|
background = "#0f0b15";
|
|
foreground = "#ffffff";
|
|
cursor-color = "#d369af";
|
|
selection-foreground = "#af85ea";
|
|
selection-background = "#572454";
|
|
palette = [
|
|
"0=#0f0b15"
|
|
"1=#f47359"
|
|
"2=#29a444"
|
|
"3=#b58a52"
|
|
"4=#3f95f6"
|
|
"5=#d369af"
|
|
"6=#4fbaef"
|
|
"7=#b8c6d5"
|
|
"8=#807c9f"
|
|
"9=#ff6a7a"
|
|
"10=#00a392"
|
|
"11=#df9080"
|
|
"12=#029fff"
|
|
"13=#af85ea"
|
|
"14=#35afbf"
|
|
"15=#ffffff"
|
|
];
|
|
keybind = [
|
|
"ctrl+plus=increase_font_size:2"
|
|
"ctrl+minus=decrease_font_size:2"
|
|
"ctrl+0=reset_font_size"
|
|
"ctrl+shift+a=select_all"
|
|
"ctrl+shift+c=copy_to_clipboard"
|
|
"ctrl+shift+v=paste_from_clipboard"
|
|
"cmd+c=copy_to_clipboard"
|
|
"cmd+v=paste_from_clipboard"
|
|
"global:cmd+semicolon=toggle_quick_terminal"
|
|
];
|
|
};
|
|
};
|
|
}
|