Compare commits

..

No commits in common. "fd176004448d579f8f4fd45e0936b6b74d62fea5" and "85d57c402a05cd8fa5f2cdbb4be950a409448760" have entirely different histories.

View file

@ -4,21 +4,16 @@ return {
dependencies = { "lervag/vimtex" },
config = function()
-- vimtex
vim.g.vimtex_view_method = "sioyek"
vim.g.vimtex_view_method = "zathura"
vim.g.vimtex_compiler_method = "tectonic"
-- nvim-texlabconfig
local tex_preview_executable = "zathura"
local tex_preview_args = {
"--reuse-window",
"--execute-command",
"toggle_synctex", -- Open Sioyek in synctex mode.
"--inverse-search",
[[nvim-texlabconfig -file %%%1 -line %%%2 -server ]] .. vim.v.servername,
"--forward-search-file",
"%f",
"--forward-search-line",
"%l",
"--synctex-editor-command",
[[nvim-texlabconfig -file '%%%{input}' -line %%%{line} -server ]] .. vim.v.servername,
"--synctex-forward",
"%l:1:%f",
"%p",
}
local texlab_build_executable = "tectonic"