nixos-old/kitty/settings.nix

16 lines
273 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;
};
}