From 4e14a27a381e96e05e50985da4cb5bcd8c5e048c Mon Sep 17 00:00:00 2001 From: Oshgnacknak Date: Mon, 21 Apr 2025 14:55:44 +0200 Subject: [PATCH] vimtex: Only show window on error, ignore warnings --- _config/nvim/plugin/tex.vim | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/_config/nvim/plugin/tex.vim b/_config/nvim/plugin/tex.vim index 1e5d494..a24abde 100644 --- a/_config/nvim/plugin/tex.vim +++ b/_config/nvim/plugin/tex.vim @@ -1,5 +1,10 @@ let g:vimtex_view_method = 'zathura' let g:vimtex_compiler_method = 'latexmk' +let g:vimtex_quickfix_mode = 2 + +let g:vimtex_compiler_latexmk = { + \ 'out_dir' : '.vimtex', + \} " This is necessary for VimTeX to load properly. The "indent" is optional. " Note that most plugin managers will do this automatically.