2015-03-07 23:02:15 +01:00
|
|
|
" vimtex - LaTeX plugin for Vim
|
2013-10-05 13:53:42 +02:00
|
|
|
"
|
|
|
|
" Maintainer: Karl Yngve Lervåg
|
|
|
|
" Email: karl.yngve@gmail.com
|
|
|
|
"
|
|
|
|
|
2015-03-07 23:02:15 +01:00
|
|
|
if exists('g:vimtex_enabled') && !g:vimtex_enabled
|
2013-10-05 14:07:56 +02:00
|
|
|
finish
|
|
|
|
endif
|
2013-10-05 13:53:42 +02:00
|
|
|
if exists('b:did_ftplugin')
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
let b:did_ftplugin = 1
|
|
|
|
|
2015-03-07 23:02:15 +01:00
|
|
|
if exists('g:latex_enabled')
|
|
|
|
echohl Error
|
|
|
|
echom "vim-latex has been renamed to vimtex!"
|
|
|
|
echom "Please see docs for more information (:h vim-latex-namechange)."
|
|
|
|
echohl None
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
|
|
|
call vimtex#init()
|
2013-10-05 13:53:42 +02:00
|
|
|
|
2014-12-08 20:44:17 +01:00
|
|
|
" vim: fdm=marker sw=2
|