feat(vimtex): add vimtex

I spend a fair amount of time writing LaTeX at the moment, and IMO
vimtex just works really well
This commit is contained in:
Robert Morrison 2026-04-10 02:33:59 +01:00
parent 6ae1d7a38f
commit a886c6392e

View File

@ -0,0 +1,12 @@
--- @module 'lazy.nvim'
--- @type LazySpec[]
return {
"lervag/vimtex",
lazy = false, -- we don't want to lazy load VimTeX
init = function()
-- VimTeX configuration goes here, e.g.
vim.g.tex_flavour='latex'
vim.g.vimtex_quickfix_mode=0
vim.g.vimtex_view_method = "skim"
end
}