# 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 ''; }; }