diff options
Diffstat (limited to 'after/ftplugin/tex.vim')
-rw-r--r-- | after/ftplugin/tex.vim | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/after/ftplugin/tex.vim b/after/ftplugin/tex.vim index ed179bc..895fcd9 100644 --- a/after/ftplugin/tex.vim +++ b/after/ftplugin/tex.vim @@ -1,6 +1,5 @@ " Does not highlight conceal highlight Conceal ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE -let g:vimtex_view_general_viewer = 'zathura' " VimTex specific settings set conceallevel=1 @@ -9,3 +8,9 @@ let g:tex_conceal='abdmg' " Spell checking set spell spelllang=en_us set textwidth=80 + +let g:vimtex_quickfix_ignore_filters = [ + \ 'LaTeX Warning: Command \\under\(bar\|line\) has changed.', + \ 'Over-specification in `v', + \ '\\headheight is too small' + \] |