nixos-old/kitty/settings.nix

21 lines
388 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 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
}