home/ghostty: increase cursor thickness

This commit is contained in:
Primrose 2026-01-03 11:15:21 +01:00
parent d7e5df3f5d
commit 94877b6b0b
Signed by: primrose
GPG key ID: 4E887A4CA9714ADA

View file

@ -14,11 +14,20 @@ in
]; ];
programs.ghostty.settings = { programs.ghostty.settings = {
# Declutter
gtk-titlebar = false; gtk-titlebar = false;
window-decoration = "none"; window-decoration = "none";
confirm-close-surface = false;
# Fonts
font-family = "Iosevka NFM"; font-family = "Iosevka NFM";
adjust-cursor-thickness = 2;
keybind = [
"ctrl+shift+==increase_font_size:1"
"ctrl+-=decrease_font_size:1"
];
# Theme
background = "#fdf6e3"; background = "#fdf6e3";
foreground = "#073642"; foreground = "#073642";
palette = [ palette = [
@ -39,13 +48,6 @@ in
"14=#4bccc1" # a platupus? perry the platupus? "14=#4bccc1" # a platupus? perry the platupus?
"15=#eeeadd" "15=#eeeadd"
]; ];
confirm-close-surface = false;
keybind = [
"ctrl+shift+==increase_font_size:1"
"ctrl+-=decrease_font_size:1"
];
}; };
}; };
} }