15 lines
292 B
VimL
15 lines
292 B
VimL
|
if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'vim') == -1
|
||
|
|
||
|
" Vim indent file
|
||
|
" Language: systemd.unit(5)
|
||
|
|
||
|
" Only load this indent file when no other was loaded.
|
||
|
if exists("b:did_indent")
|
||
|
finish
|
||
|
endif
|
||
|
|
||
|
" Looks a lot like dosini files.
|
||
|
runtime! indent/dosini.vim
|
||
|
|
||
|
endif
|