summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrahmajit Das <brahmajit.xyz@gmail.com>2024-05-18 03:39:53 +0530
committerBrahmajit Das <brahmajit.xyz@gmail.com>2024-05-18 03:39:53 +0530
commitebece4c96ad01a5269afad48128dc2268c255686 (patch)
treefb80c08ed84605dbbaa69429f89a9d7ea44bee8b
parent65140de3d9ec46decd76bf109e7717025724b5aa (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.vim7
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'
+ \]