From 2e8f13aa4a4aa06b720a434f4cce05ea668b6f31 Mon Sep 17 00:00:00 2001 From: iGor milhit Date: Thu, 23 Mar 2023 13:57:05 +0100 Subject: [PATCH] plugin: configure vimtex with tectonic Co-Authored-by: iGor milhit --- init.vim | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/init.vim b/init.vim index 8107b7f..a9b0e48 100644 --- a/init.vim +++ b/init.vim @@ -217,13 +217,12 @@ let g:isort_command='isort' " ######################################### " ######################################### -let g:vimtex_compiler_latexmk = { - \ 'executable' : 'latexmk', +" Vimtex configuration +let g:vimtex_compiler_method = 'tectonic' +let g:vimtex_compiler_tectonic = { \ 'options' : [ - \ '-xelatex', - \ '-file-line-error', - \ '-synctex=1', - \ '-interaction=nonstopmode', + \ '--keep-logs', + \ '-synctex', \ ], \}