diff options
author | Camil Staps | 2017-05-31 08:52:51 +0000 |
---|---|---|
committer | Camil Staps | 2017-05-31 08:52:51 +0000 |
commit | cba78925da6260dd32994a01daba640c16253de8 (patch) | |
tree | b36f19eb626e3f66d6f15feba02885b89f29d336 | |
parent | Remove parcellite (diff) |
Update vimtex options for new structure
-rw-r--r-- | vim/.vimrc | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -90,8 +90,14 @@ let g:syntastic_mode_map = { \ "passive_filetpyes": [] } " VimTeX -let g:vimtex_latexmk_callback = 0 -let g:vimtex_latexmk_options = '-pdf -shell-escape -enable-pipes' +let g:vimtex_compiler_latexmk = { + \ 'callback': 0, + \ 'options': [ + \ '-pdf', + \ '-shell-escape', + \ '-enable-pipes', + \ ], + \ } let g:vimtex_latexmk_file_line_error = 0 let g:tex_flavor='latex' |