nixos_dots/modules/home-manager/terminal/kitty.nix
2024-12-12 19:12:55 +03:00

15 lines
No EOL
374 B
Nix

{
programs.kitty = { # Быстрое отображение медиа, но кривой SSH
enable = true;
shellIntegration = { # https://sw.kovidgoyal.net/kitty/shell-integration/
enableBashIntegration = true;
enableZshIntegration = true;
# enableFishIntegration = true;
};
settings = {
window_padding_width = 5;
};
};
}