nixos-old/kitty/settings.nix

33 lines
655 B
Nix
Raw Normal View History

2022-10-30 07:49:12 +00:00
{ pkgs, ... }:
{
enable = true;
settings = {
2022-10-30 13:30:28 +00:00
# cursor
cursor = "none";
2022-10-30 07:49:12 +00:00
# dont pop up a prompt when trying to close
confirm_os_window_close = 0;
2022-10-30 13:30:28 +00:00
# mouse
focus_follows_mouse = true;
2022-10-30 07:49:12 +00:00
# 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
2022-10-30 13:30:28 +00:00
tab_bar_edge = "top";
2022-10-30 10:13:33 +00:00
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";
2022-10-30 13:30:28 +00:00
size = 12;
2022-10-30 09:02:22 +00:00
};
theme = "Gruvbox Material Light Hard";
2022-10-30 07:49:12 +00:00
}