mirror of
https://github.com/sheerun/vim-polyglot.git
synced 2025-11-10 12:33:51 -05:00
11 lines
166 B
VimL
11 lines
166 B
VimL
" Only load this indent file when no other was loaded.
|
|
if exists("b:did_indent")
|
|
finish
|
|
endif
|
|
|
|
if version > 600
|
|
runtime! indent/c.vim
|
|
endif
|
|
|
|
let b:did_indent = 1
|