first commit

This commit is contained in:
2024-02-29 12:04:20 +01:00
commit b8f1a62bdd
15 changed files with 685 additions and 0 deletions

13
home/programs/zathura.nix Normal file
View File

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