From 8a94b47a08661594c7eee5409fbc07642a98e8bd Mon Sep 17 00:00:00 2001 From: Ricman Date: Sun, 20 Apr 2025 04:44:38 -0300 Subject: [PATCH] =?UTF-8?q?Agregu=C3=A9=20el=20soporte=20en=20vimtex=20par?= =?UTF-8?q?a=20poder=20usar=20gnuplots=20para=20gr=C3=A1ficos=20mas=20pote?= =?UTF-8?q?ntes.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/custom/plugins/vimtex.lua | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/lua/custom/plugins/vimtex.lua b/lua/custom/plugins/vimtex.lua index a4a5e61c..2d5b1358 100644 --- a/lua/custom/plugins/vimtex.lua +++ b/lua/custom/plugins/vimtex.lua @@ -1,6 +1,17 @@ return { 'lervag/vimtex', lazy = false, + config = function() + vim.g.vimtex_compiler_latexmk = { + options = { + '-shell-escape', + '-verbose', + '-file-line-error', + '-synctex=1', + '-interaction=nonstopmode', + }, + } + end, init = function() vim.g.vimtex_view_general_viewer = 'C:/Users/ricar/AppData/Local/SumatraPDF/SumatraPDF.exe' vim.g.vimtex_view_general_options = '-reuse-instance -forward-search @tex @line @pdf'