kickstart.nvim/lua/custom/plugins/vimtex.lua

15 lines
262 B
Lua

return {
'lervag/vimtex',
lazy = false,
init = function()
vim.g.vimtex_view_method = 'zathura'
vim.g.vimtex_compiler_latexmk = {
options = {
'-shell-escape',
'-pdf',
'-interaction=nonstopmode',
},
}
end,
}