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