dotfiles/home/andrei/kitty.nix
2025-07-12 12:37:52 +03:00

18 lines
342 B
Nix

{
programs.kitty = {
enable = true;
font = {
name = "FiraCode Nerd Font Mono";
size = 16;
};
settings = {
disable_ligatures = "never";
confirm_os_window_close = 0;
};
shellIntegration.enableZshIntegration = true;
keybindings = {
"cmd+u" = "kitten hints --type url";
};
};
}