This commit is contained in:
biscuit
2025-06-06 10:28:29 -05:00
parent 7f7cbe74f7
commit f7d3c7a7c4
5 changed files with 81 additions and 20 deletions
+15 -13
View File
@@ -1,17 +1,19 @@
{pkgs, termFont, ...}: {
programs.kitty.enable = true;
programs.kitty.settings = {
{termFont, ...}: {
programs.kitty = {
enable = true;
themeFile = "Catppuccin-Mocha";
settings = {
confirm_os_window_close = 0;
window_padding_width = 10;
confirm_os_window_close = 0;
window_padding_width = 10;
font_size = 12.0;
font_family = termFont;
font_size = 12.0;
font_family = termFont;
# optimization
input_delay = 0;
repaint_delay = 2;
sync_to_monitor = false;
wayland_enable_ime = false;
# optimization
input_delay = 0;
repaint_delay = 2;
sync_to_monitor = false;
wayland_enable_ime = false;
};
};
}