summaryrefslogtreecommitdiffstats
path: root/after/ftplugin/tex.vim
blob: 777ed5c258ee292dca1a1b51df4be26ba77269f6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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