mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-08 11:33:52 -05:00
9 lines
271 B
VimL
9 lines
271 B
VimL
" Oh yeah, we are loading before vim's filetype.vim so we can
|
|
" make startup little faster by preventing it to load later
|
|
if !exists("did_load_filetypes")
|
|
runtime! ftdetect/polyglot.vim
|
|
|
|
" We need to do it here to avoid recursive loop
|
|
runtime! ftdetect/*.vim
|
|
endif
|