vim: Add quickfix filter for vimtex
This commit is contained in:
parent
68f2f64ab6
commit
5b96405628
|
@ -24,11 +24,18 @@ Plug 'mechatroner/rainbow_csv'
|
||||||
Plug 'posva/vim-vue', { 'for': 'vue' }
|
Plug 'posva/vim-vue', { 'for': 'vue' }
|
||||||
Plug 'sirtaj/vim-openscad', { 'for': 'openscad' }
|
Plug 'sirtaj/vim-openscad', { 'for': 'openscad' }
|
||||||
|
|
||||||
Plug 'lervag/vimtex', { 'for': 'tex' }
|
Plug 'lervag/vimtex'
|
||||||
let g:tex_flavor='latex'
|
let g:tex_flavor='latex'
|
||||||
let g:vimtex_view_method='zathura'
|
let g:vimtex_view_method='zathura'
|
||||||
set conceallevel=1
|
set conceallevel=1
|
||||||
let g:tex_conceal='abdmg'
|
let g:tex_conceal='abdmg'
|
||||||
|
" this disables some helful warnings that often have a reason why I ignore them
|
||||||
|
let g:vimtex_quickfix_ignore_filters = [
|
||||||
|
\'Underfull \\hbox (badness [0-9]*) in paragraph at lines',
|
||||||
|
\'Overfull \\hbox ([0-9]*.[0-9]*pt too wide) in paragraph at lines',
|
||||||
|
\'Package hyperref Warning: Token not allowed in a PDF string',
|
||||||
|
\'Package typearea Warning: Bad type area settings!',
|
||||||
|
\]
|
||||||
command Vtc VimtexCompile
|
command Vtc VimtexCompile
|
||||||
|
|
||||||
" Color schemes
|
" Color schemes
|
||||||
|
|
Reference in a new issue