feat: Add texlab LSP and vimtex plugin for LaTeX support

This commit is contained in:
Max Luebke 2025-02-21 19:33:23 +01:00
parent 9e1a8e2660
commit 127365d142
2 changed files with 10 additions and 0 deletions

View File

@ -695,6 +695,7 @@ require('lazy').setup({
},
cmake = {},
julials = {},
texlab = {},
-- gopls = {},
-- pyright = {},
-- rust_analyzer = {},

View File

@ -81,4 +81,13 @@ return {
vim.g.slime_target = 'tmux'
end,
},
{
'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,
},
}