nixos-config/home-manager/modules/zathura.nix
gwg313 120d06ed4d
updates
Signed-off-by: gwg313 <gwg313@pm.me>
2025-09-07 13:29:51 -04:00

19 lines
470 B
Nix

# A highly customizable document viewer.
{
pkgs,
config,
...
}:
{
programs.zathura = {
enable = true;
extraConfig = ''
# Open document in fit-width mode by default
set adjust-open "best-fit"
set recolor false # optional: just visual
set synctex true # if using with LaTeX/Typst
set adjust-open width # optional: fit width on open
set continuous true # scroll continuously
'';
};
}