diff options
Diffstat (limited to 'ftplugin/puppet.vim')
-rw-r--r-- | ftplugin/puppet.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/puppet.vim b/ftplugin/puppet.vim index 0796f743..876b4748 100644 --- a/ftplugin/puppet.vim +++ b/ftplugin/puppet.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'puppet') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'puppet') == -1 setl ts=2 setl sts=2 setl sw=2 @@ -9,3 +6,4 @@ setl et setl keywordprg=puppet\ describe\ --providers setl iskeyword=-,:,@,48-57,_,192-255 setl cms=#\ %s +endif |