nvim/lua/plugins/vimtex.lua

10 lines
197 B
Lua
Raw Normal View History

2024-04-11 18:06:27 +00:00
return {
"lervag/vimtex",
init = function()
vim.g.tex_conceal = "agm"
vim.g.vimtex_quickfix_ignorefilters = { "overfull", "underfull" }
vim.g.vimtex_syntax_enabled = 0
end,
ft = "tex",
}