diff options
Diffstat (limited to 'after/ftplugin/tex.vim')
-rw-r--r-- | after/ftplugin/tex.vim | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/after/ftplugin/tex.vim b/after/ftplugin/tex.vim new file mode 100644 index 0000000..995efef --- /dev/null +++ b/after/ftplugin/tex.vim @@ -0,0 +1,13 @@ +" Spell checking +set spell spelllang=en_us + +" 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' + +" Auto complete for $ in pandoc markdown +let b:AutoPairs = extend({'$': '$'}, g:AutoPairs, 'keep') +let java_ignore_javadoc=1 |