Agregué el soporte en vimtex para poder usar gnuplots para gráficos mas potentes.

This commit is contained in:
Ricman 2025-04-20 04:44:38 -03:00
parent 6edc696f04
commit 8a94b47a08
1 changed files with 11 additions and 0 deletions

View File

@ -1,6 +1,17 @@
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'