nix-dotfiles/snippets/zathura.nix

12 lines
225 B
Nix

{...}:
{
programs.zathura = {
enable = true;
options = {
selection-clipboard = "clipboard";
synctex = "true";
synctex-editor-command = "texlab inverse-search -i %{input} -l %{line}";
};
};
}