diff options
author | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-05-18 03:39:53 +0530 |
---|---|---|
committer | Brahmajit Das <brahmajit.xyz@gmail.com> | 2024-05-18 03:39:53 +0530 |
commit | ebece4c96ad01a5269afad48128dc2268c255686 (patch) | |
tree | fb80c08ed84605dbbaa69429f89a9d7ea44bee8b | |
parent | 65140de3d9ec46decd76bf109e7717025724b5aa (diff) |
nvim: after: ftplugin: tex.vim: adding options to ignore filters
Signed-off-by: Brahmajit Das <brahmajit.xyz@gmail.com>
-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' + \] |