mirror of
https://git.sr.ht/~neverness/ultima
synced 2025-01-09 08:43:52 +00:00
40 lines
974 B
Nix
40 lines
974 B
Nix
{ pkgs, ... }: {
|
|
programs.kitty = with pkgs; {
|
|
settings = {
|
|
shell = "${fish}/bin/fish";
|
|
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";
|
|
font_features =
|
|
"+calt +liga +ss01 +ss02 +ss03 +ss04 +ss05 +ss06 +ss07 +ss08 +ss09";
|
|
|
|
kitty_mod = "alt";
|
|
};
|
|
};
|
|
}
|
|
|