nvim/lua/plugins/vimtex.lua
Alexander Gehrke 5cab0a1769 more cleanup
2024-07-25 19:17:54 +02:00

11 lines
226 B
Lua

return {
"lervag/vimtex",
init = function()
vim.g.tex_flavor = "latex"
vim.g.tex_conceal = "agm"
vim.g.vimtex_quickfix_ignorefilters = { "overfull", "underfull" }
vim.g.vimtex_syntax_enabled = 0
end,
ft = "tex",
}