switch latex to use sioyek #36

Merged
softinio merged 1 commit from push-wplxxnwlpvzu into main 2024-11-17 16:13:50 -08:00
Showing only changes of commit 5649da4647 - Show all commits

View file

@ -4,16 +4,21 @@ return {
dependencies = { "lervag/vimtex" },
config = function()
-- vimtex
vim.g.vimtex_view_method = "zathura"
vim.g.vimtex_view_method = "sioyek"
vim.g.vimtex_compiler_method = "tectonic"
-- nvim-texlabconfig
local tex_preview_executable = "zathura"
local tex_preview_args = {
"--synctex-editor-command",
[[nvim-texlabconfig -file '%%%{input}' -line %%%{line} -server ]] .. vim.v.servername,
"--synctex-forward",
"%l:1:%f",
"--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",
"%p",
}
local texlab_build_executable = "tectonic"