nvim-config/lua/plugins/texlabconfig.lua

47 lines
1.2 KiB
Lua
Raw Normal View History

2023-02-10 21:20:55 -08:00
return {
"f3fora/nvim-texlabconfig",
build = "go build",
dependencies = { "lervag/vimtex" },
config = function()
-- vimtex
2024-11-17 14:06:19 -08:00
vim.g.vimtex_view_method = "zathura"
2023-02-10 21:20:55 -08:00
vim.g.vimtex_compiler_method = "tectonic"
-- nvim-texlabconfig
2024-11-17 14:06:19 -08:00
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",
"%p",
}
2023-02-10 21:20:55 -08:00
local texlab_build_executable = "tectonic"
local texlab_build_args = {
"-X",
"compile",
"%f",
"--synctex",
"--keep-logs",
"--keep-intermediates",
}
require("texlabconfig").setup({
cache_activate = true,
cache_filetypes = { "tex", "bib" },
reverse_search_edit_cmd = vim.cmd.edit,
settings = {
texlab = {
build = {
executable = texlab_build_executable,
args = texlab_build_args,
},
forwardSearch = {
executable = tex_preview_executable,
args = tex_preview_args,
},
},
},
})
end,
}