nixos-config/modules/home/kitty/default.nix
2024-02-13 21:08:08 +01:00

27 lines
503 B
Nix

{ pkgs, ... }:
{
programs.kitty = {
enable = true;
theme = "Catppuccin-Mocha";
font = {
name = "JetBrainsMono Nerd Font";
size = 13;
};
settings = {
confirm_os_window_close = 0;
background_opacity = "0.55";
window_padding_width = 10;
scrollback_lines = 10000;
enable_audio_bell = false;
mouse_hide_wait = 60;
};
keybindings = {
"ctrl+shift+left" = "no_op";
"ctrl+shift+right" = "no_op";
};
};
}