From 81d111c4226ac72dffac6f97dd5a446026c572b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Max=20L=C3=BCbke?= Date: Thu, 10 Apr 2025 13:52:17 +0200 Subject: [PATCH] feat(vimtex): add shell escape option for latexmk --- lua/custom/plugins/init.lua | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/lua/custom/plugins/init.lua b/lua/custom/plugins/init.lua index 5cff4bb..5bc1133 100644 --- a/lua/custom/plugins/init.lua +++ b/lua/custom/plugins/init.lua @@ -88,6 +88,11 @@ return { init = function() -- VimTeX configuration goes here, e.g. vim.g.vimtex_view_method = 'zathura' + vim.g.vimtex_compiler_latexmk = { + options = { + '-shell-escape', + }, + } end, }, }