diff options
Diffstat (limited to 'after/ftplugin/tex.vim')
-rw-r--r-- | after/ftplugin/tex.vim | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/after/ftplugin/tex.vim b/after/ftplugin/tex.vim new file mode 100644 index 00000000..777ed5c2 --- /dev/null +++ b/after/ftplugin/tex.vim @@ -0,0 +1,20 @@ +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'latex') == -1 + +" vimtex - LaTeX plugin for Vim +" +" Maintainer: Karl Yngve LervÄg +" Email: karl.yngve@gmail.com +" + +if !get(g:, 'vimtex_enabled', 1) + finish +endif + +if exists('b:did_ftplugin_vimtex') + finish +endif +let b:did_ftplugin_vimtex = 1 + +call vimtex#check_plugin_clash() + +endif |