diff options
| author | listout <listout@protonmail.com> | 2021-07-25 19:56:44 +0530 |
|---|---|---|
| committer | listout <listout@protonmail.com> | 2021-07-25 19:56:44 +0530 |
| commit | 76b9146ee207ef7058b332c3ee48da9a53b42cd5 (patch) | |
| tree | 0b3ff6ce1e8ac68222094964e7ab50721e5c5452 | |
| parent | 9b31ebf473d58b3e70a8f7f8134d034d16f3e2db (diff) | |
vimtex argumnents
| -rw-r--r-- | init.vim | 9 |
1 files changed, 9 insertions, 0 deletions
@@ -5,6 +5,15 @@ let g:markdown_syntax_conceal = 1 let g:markdown_minlines = 100 let g:tex_flavor='latex' +let g:vimtex_compiler_latexmk = { + \ 'options' : [ + \ '-shell-escape', + \ '-verbose', + \ '-file-line-error', + \ '-synctex=1', + \ '-interaction=nonstopmode', + \ ], + \} augroup pandoc_syntax au! BufNewFile,BufFilePre,BufRead *.md set filetype=markdown.pandoc |
