I spend a fair amount of time writing LaTeX at the moment, and IMO vimtex just works really well
13 lines
297 B
Lua
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
|
|
}
|