diff options
Diffstat (limited to 'ftplugin/hcl.vim')
-rw-r--r-- | ftplugin/hcl.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/ftplugin/hcl.vim b/ftplugin/hcl.vim index c648150c..a48f406b 100644 --- a/ftplugin/hcl.vim +++ b/ftplugin/hcl.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'hcl') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'hcl') == -1 " File: ftplugin/hcl.vim " Author: BABAROT <b4b4r07@gmail.com> " Description: FileType Plugin for HCL @@ -39,3 +36,4 @@ let &cpo = s:save_cpo unlet s:save_cpo " vim: set et sw=4 ts=4: +endif |