1
0
mirror of https://github.com/tiyn/dotfiles.git synced 2025-04-19 00:07:47 +02:00

Compare commits

...

2 Commits

Author SHA1 Message Date
508730a481 nvim: markdown previews now feature a toc 2023-12-09 01:37:28 +01:00
1977d83153 nvim: make markdown preview links colored 2023-12-09 01:27:30 +01:00

View File

@ -14,7 +14,7 @@ return {
textopdfforwardjump = "zathura --synctex-forward=%line%:%column%:%srcfile% %outputfile%",
-- markdown
mdoutputext = "pdf",
mdtopdf = "pandoc %docroot% -o %outputfile%",
mdtopdf = "pandoc %docroot% --toc --toc-depth=5 -V colorlinks=true -V linkcolor=blue -V urlcolor=red -V toccolor=gray -o %outputfile%",
mdtopdfviewerlaunch = "zathura ./%outputfile%",
mdtohtml = "pandoc --standalone %docroot% -o %outputfile%",
mdtohtmlviewerlaunch = "firefox --kiosk --new-window %outputfile%",