feat(vimtex): add shell escape option for latexmk

This commit is contained in:
Max Lübke 2025-04-10 13:52:17 +02:00
parent 613a50572e
commit 81d111c422

View File

@ -88,6 +88,11 @@ return {
init = function() init = function()
-- VimTeX configuration goes here, e.g. -- VimTeX configuration goes here, e.g.
vim.g.vimtex_view_method = 'zathura' vim.g.vimtex_view_method = 'zathura'
vim.g.vimtex_compiler_latexmk = {
options = {
'-shell-escape',
},
}
end, end,
}, },
} }