1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-09 19:43:52 +00:00
ultima/modules/home/wm/terminals/kitty/sets.nix
2024-12-05 23:36:13 +09:00

37 lines
841 B
Nix

{ pkgs, ... }: {
programs.kitty = with pkgs; {
settings = {
editor = "${helix}/bin/hx";
confirm_os_window_close = 0;
tab_bar_min_tabs = 2;
tab_bar_edge = "button";
tab_bar_style = "fade";
tab_bar_align = "left";
tab_powerline_style = "angled";
tab_title_template = "{title}";
tab_bar_margin_width = 0;
tab_fade = "0 0.5 1";
window_margin_width = 8;
window_padding_width = 4;
window_border_width = "0.2pt";
single_window_padding_width = 4;
resize_in_steps = "no";
resize_debounce_time = 0;
dynamic_background_opacity = true;
cursor_shape = "block";
mouse_hide_wait = 2;
underline_hyperlinks = "always";
enable_audio_bell = "no";
disable_ligatures = "never";
kitty_mod = "alt";
};
};
}