diff options
Diffstat (limited to 'after')
-rw-r--r-- | after/ftplugin/tex.vim | 20 | ||||
-rw-r--r-- | after/syntax/tex.vim | 11 |
2 files changed, 0 insertions, 31 deletions
diff --git a/after/ftplugin/tex.vim b/after/ftplugin/tex.vim deleted file mode 100644 index 777ed5c2..00000000 --- a/after/ftplugin/tex.vim +++ /dev/null @@ -1,20 +0,0 @@ -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 diff --git a/after/syntax/tex.vim b/after/syntax/tex.vim deleted file mode 100644 index 6e01749f..00000000 --- a/after/syntax/tex.vim +++ /dev/null @@ -1,11 +0,0 @@ -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 -" - -call vimtex#syntax#init() - -endif |