This commit is contained in:
2025-09-19 19:57:27 +02:00
commit e4bca2cc5d
19 changed files with 480 additions and 0 deletions

11
lua/plugins/ltex.lua Normal file
View File

@ -0,0 +1,11 @@
return {
{
"lervag/vimtex",
lazy = false, -- we don't want to lazy load VimTeX
-- tag = "v2.15", -- uncomment to pin to a specific release
init = function()
-- VimTeX configuration goes here, e.g.
vim.g.vimtex_view_method = "zathura"
end
}
}