mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-29 16:47:24 +02:00
19 lines
490 B
Lua
19 lines
490 B
Lua
return {
|
|
'lervag/vimtex',
|
|
lazy = false,
|
|
config = function()
|
|
vim.g.vimtex_compiler_latexmk = {
|
|
options = {
|
|
'-shell-escape',
|
|
'-verbose',
|
|
'-file-line-error',
|
|
'-synctex=1',
|
|
'-interaction=nonstopmode',
|
|
},
|
|
}
|
|
end,
|
|
init = function()
|
|
vim.g.vimtex_view_general_viewer = 'C:/Users/ricar/AppData/Local/SumatraPDF/SumatraPDF.exe'
|
|
vim.g.vimtex_view_general_options = '-reuse-instance -forward-search @tex @line @pdf'
|
|
end,
|
|
}
|