mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-14 14:33:50 -05:00
16 lines
428 B
VimL
16 lines
428 B
VimL
let files = filter(globpath(&rtp, 'indent/mf.vim', 1, 1), { _, v -> v !~ "vim-polyglot" && v !~ $VIMRUNTIME && v !~ "after" })
|
|
if len(files) > 0
|
|
exec 'source ' . files[0]
|
|
finish
|
|
endif
|
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'mf') == -1
|
|
|
|
" METAFONT indent file
|
|
" Language: METAFONT
|
|
" Maintainer: Nicola Vitacolonna <nvitacolonna@gmail.com>
|
|
" Last Change: 2016 Oct 1
|
|
|
|
runtime! indent/mp.vim
|
|
|
|
endif
|