2023-05-17 17:10:18 +01:00
|
|
|
{pkgs, ...}: {
|
2023-04-01 12:07:19 +01:00
|
|
|
programs.kitty = {
|
|
|
|
enable = true;
|
|
|
|
font = {
|
2023-05-17 17:10:18 +01:00
|
|
|
package = with pkgs; (nerdfonts.override {fonts = ["FiraCode"];});
|
2023-04-01 12:07:19 +01:00
|
|
|
name = "Fira Code Nerd Font";
|
|
|
|
size = 14;
|
|
|
|
};
|
2023-04-01 12:23:26 +01:00
|
|
|
settings = {
|
2023-06-12 07:57:20 +01:00
|
|
|
background_opacity = "0.80";
|
2023-04-01 12:23:26 +01:00
|
|
|
disable_ligatures = "cursor";
|
|
|
|
show_hyperlink_targets = true;
|
|
|
|
copy_on_select = true;
|
|
|
|
paste_actions = "confirm";
|
|
|
|
enable_audio_bell = false;
|
2023-06-12 07:57:20 +01:00
|
|
|
window_border_width = 5;
|
2023-04-01 12:23:26 +01:00
|
|
|
window_margin_width = 5;
|
|
|
|
tab_bar_edge = "top";
|
|
|
|
tab_bar_style = "powerline";
|
|
|
|
tab_powerline_style = "round";
|
2023-06-12 07:57:20 +01:00
|
|
|
tab_bar_min_tabs = 2;
|
2023-04-01 12:23:26 +01:00
|
|
|
update_check_interval = 0;
|
|
|
|
};
|
2023-06-12 07:57:20 +01:00
|
|
|
theme = "Tokyo Night";
|
2023-04-01 12:07:19 +01:00
|
|
|
};
|
|
|
|
}
|