Add vimtex

This commit is contained in:
CJSatnarine
2026-03-11 06:40:46 -04:00
parent 60d782b282
commit 775f88b165
3 changed files with 11 additions and 5 deletions

View File

@@ -15,7 +15,7 @@ return {
ensure_installed = {
"clangd", "neocmake", "jdtls", "ts_ls", "lua_ls",
"pyright", "omnisharp", "html", "cssls", "glsl_analyzer",
"biome", "somesass_ls", "ocamllsp", "rust_analyzer",
"biome", "somesass_ls", "ocamllsp", "rust_analyzer", "texlab",
},
})
require("mason-lspconfig").setup_handlers({

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

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