19 lines
463 B
Nix

{pkgs, ...}:
{
programs.kitty = {
enable = true;
shellIntegration.enableFishIntegration = true;
settings = {
background_opacity = 0.8;
confirm_os_window_close = 0;
cursor_trail = 3;
};
keybindings = {
# TODO - they should not overwrite default behaviour
# "ctrl+c" = "copy_to_clipboard";
# "ctrl+v" = "paste_from_clipboard";
};
};
}