nixos-old/kitty/settings.nix

27 lines
561 B
Nix
Raw Normal View History

2022-10-30 07:49:12 +00:00
{ pkgs, ... }:
{
enable = true;
settings = {
# dont pop up a prompt when trying to close
confirm_os_window_close = 0;
# copy to clipboard
strip_trailing_spaces = "smart";
copy_on_select = true;
# performance
sync_to_monitor = true;
2022-10-30 10:13:33 +00:00
# tabs
## look
tab_bar_style = "separator";
tab_separator = " | ";
active_tab_title_template = " {bell_symbol}{activity_symbol}{fmt.fg.tab}{title}";
2022-10-30 07:49:12 +00:00
};
2022-10-30 09:02:22 +00:00
font = {
name = "CaskaydiaCove Nerd Font Mono";
size = 14;
};
theme = "Gruvbox Material Light Hard";
2022-10-30 07:49:12 +00:00
}