plugin stuff

This commit is contained in:
Alexander Gehrke 2024-04-11 20:06:27 +02:00
parent 0563865360
commit 2c0362678f
5 changed files with 152 additions and 96 deletions

9
lua/plugins/vimtex.lua Normal file
View file

@ -0,0 +1,9 @@
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",
}