Files
nixos-config/home/programs/zathura.nix
2024-02-29 12:04:20 +01:00

14 lines
207 B
Nix

{ ... }:
{
programs.zathura = {
enable = true;
options = {
synctex-editor-command = ''
nvim --headless -c "VimtexInverseSearch %l '%f'"
'';
synctex = true;
};
};
}