26 lines
637 B
Nix
26 lines
637 B
Nix
{ pkgs, ... }: {
|
|
programs.kitty = {
|
|
enable = true;
|
|
shellIntegration.mode = "enabled";
|
|
theme = "Tomorrow Night";
|
|
environment = {
|
|
DIRENV_LOG_FORMAT = "";
|
|
};
|
|
settings = {
|
|
wayland_titlebar_color = "system";
|
|
background_opacity = "0.82";
|
|
font_size = 12;
|
|
hide_window_decorations = "no";
|
|
linux_display_server = "x11";
|
|
confirm_os_window_close = 0;
|
|
remember_window_size = "no";
|
|
initial_window_width = "82c";
|
|
initial_window_height = "24c";
|
|
};
|
|
};
|
|
|
|
home.file.".w3m/config".text = ''
|
|
inline_img_protocol 4
|
|
imgdisplay kitten icat 2>/dev/null
|
|
'';
|
|
}
|