configuration.nix/home/programs/kitty.nix

25 lines
627 B
Nix
Raw Permalink Normal View History

2024-04-27 23:08:01 +05:30
{ pkgs, ... }: {
2023-03-15 22:11:59 +05:30
programs.kitty = {
enable = true;
2024-04-27 23:08:01 +05:30
font = {
package = pkgs.nerdfonts.override { fonts = [ "FiraCode" ]; };
name = "FiraCode Nerd Font";
size = 14;
};
2023-03-15 22:11:59 +05:30
settings = {
enable_audio_bell = false;
2024-04-27 23:08:01 +05:30
initial_window_width = "100c";
initial_window_height = "25c";
window_padding_width = "4.0";
background_opacity = "0.98";
cursor_shape = "beam";
scrollback_lines = 2000;
copy_on_select = "clipboard";
url_style = "curly";
sync_to_monitor = true;
2023-03-15 22:11:59 +05:30
};
2024-04-27 23:08:01 +05:30
shellIntegration.mode = "disabled";
2024-09-24 19:36:33 +05:30
themeFile = "Dracula";
2023-03-15 22:11:59 +05:30
};
}