neovim-dots/lua/plugins/latex.lua

15 lines
359 B
Lua
Raw Normal View History

2024-04-23 13:21:27 -07:00
-- defines latex plugins, EXCEPT the lsp (defined in lsp.)
return {
{
"lervag/vimtex",
ft = { "tex", "latex", "bib" },
-- tag = "v2.15", -- uncomment to pin to a specific release
init = function()
-- VimTeX configuration goes here
vim.g.vimtex_view_method = "skim"
vim.g.vimtex_compiler_method = "latexmk"
2024-04-23 13:21:27 -07:00
end,
},
}