diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-05-20 20:19:03 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-05-20 20:19:03 +0200 |
commit | a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5 (patch) | |
tree | 952fc9cf50a5f4c42ffb2b1c0077155bcda3e7c1 /after | |
parent | 3c47f192b5758222a1e8055c7e08650e05d0d171 (diff) | |
download | vim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.tar.gz vim-polyglot-a9cc6fd2188ddc37257c834b6f5a5fa86d0eebd5.zip |
Remove latex, fixes #484
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 |