1
Fork 0
satellite/dotfiles/neovim/lua/my/plugins/vimtex.lua

13 lines
353 B
Lua
Raw Normal View History

2022-02-09 21:20:34 +01:00
local global = require("my.helpers").global
local M = {}
function M.setup()
-- Viewer method
global("vimtex_view_method", "zathura")
2022-02-10 00:19:52 +01:00
global("Tex_DefaultTargetFormat", "pdf")
global("vimtex_compiler_latexmk", {options = {"-pdf", "-shell-escape", "-verbose", "-file-line-error", "-synctex=1", "-interaction=nonstopmode"}})
2022-02-09 21:20:34 +01:00
end
return M