25 lines
684 B
Nix
25 lines
684 B
Nix
# Kitty is a fast, featureful, GPU based terminal emulator
|
|
{
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
scrollback_lines = 10000;
|
|
initial_window_width = 1200;
|
|
initial_window_height = 600;
|
|
update_check_interval = 0;
|
|
enable_audio_bell = false;
|
|
confirm_os_window_close = "0";
|
|
remember_window_size = "no";
|
|
disable_ligatures = "always";
|
|
url_style = "curly";
|
|
copy_on_select = "clipboard";
|
|
cursor_shape = "Underline";
|
|
cursor_underline_thickness = 3;
|
|
window_padding_width = 10;
|
|
open_url_with = "default";
|
|
allow_remote_control = "yes";
|
|
listen_on = "unix:/tmp/mykitty";
|
|
};
|
|
};
|
|
}
|