summaryrefslogtreecommitdiff
path: root/after/ftplugin/tex.vim
blob: b405d81ca1bdf9c7046644074eb0414e55bf82e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
" Does not highlight conceal
highlight Conceal ctermbg=NONE ctermfg=NONE guibg=NONE guifg=NONE

" VimTex specific settings
set conceallevel=1
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'
      \]

let g:tex_flavor = "xelatex"
let g:vimtex_view_general_viewer = 'zathura'