1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/vimtex.lua
2022-02-10 01:19:52 +02:00

13 lines
353 B
Lua

local global = require("my.helpers").global
local M = {}
function M.setup()
-- Viewer method
global("vimtex_view_method", "zathura")
global("Tex_DefaultTargetFormat", "pdf")
global("vimtex_compiler_latexmk", {options = {"-pdf", "-shell-escape", "-verbose", "-file-line-error", "-synctex=1", "-interaction=nonstopmode"}})
end
return M