blob: b8fad530bda0a70b57c198f95d5d1f44fbfb4f8f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|