Compare commits

...

2 Commits

Author SHA1 Message Date
Max Lübke
3d950bd077 chore(lsp): configure texlab with local latexindent path 2025-04-10 13:52:40 +02:00
Max Lübke
81d111c422 feat(vimtex): add shell escape option for latexmk 2025-04-10 13:52:17 +02:00
2 changed files with 14 additions and 1 deletions

View File

@ -697,7 +697,15 @@ require('lazy').setup({
},
cmake = {},
julials = {},
texlab = {},
texlab = {
settings = {
texlab = {
latexindent = {
['local'] = '/home/max/.config/latexindent/latexindent.yaml',
},
},
},
},
bashls = {},
-- gopls = {},
-- pyright = {},

View File

@ -88,6 +88,11 @@ return {
init = function()
-- VimTeX configuration goes here, e.g.
vim.g.vimtex_view_method = 'zathura'
vim.g.vimtex_compiler_latexmk = {
options = {
'-shell-escape',
},
}
end,
},
}