forked from extern/nix-config
cc5e8f5f71
This should make long form text easier to read in kitty without sacrificing too much vertical screen estate.
27 lines
716 B
Nix
27 lines
716 B
Nix
{
|
|
home-manager.sharedModules = [{
|
|
programs.kitty = {
|
|
enable = true;
|
|
settings = {
|
|
enable_audio_bell = false;
|
|
allow_remote_control = true;
|
|
dynamic_background_opacity = true;
|
|
close_on_child_death = true;
|
|
cursor_blink_interval = 0;
|
|
wayland_titlebar_color = "background";
|
|
listen_on = "unix:/tmp/kitty";
|
|
open_url_with = "librewolf";
|
|
window_padding_width = 5;
|
|
tab_bar_margin_width = 5;
|
|
modify_font = "cell_height 110%";
|
|
};
|
|
};
|
|
xdg.configFile."kitty/diff.conf".text = ''
|
|
map d scroll_to next-page
|
|
map u scroll_to prev-page
|
|
map g scroll_to start
|
|
map G scroll_to end
|
|
'';
|
|
}];
|
|
}
|