nVim/lua/plugins/spec/vimtex.lua
Robert Morrison a886c6392e feat(vimtex): add vimtex
I spend a fair amount of time writing LaTeX at the moment, and IMO
vimtex just works really well
2026-04-10 02:33:59 +01:00

13 lines
297 B
Lua

--- @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
}