diff options
Diffstat (limited to 'indent/terraform.vim')
-rw-r--r-- | indent/terraform.vim | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/indent/terraform.vim b/indent/terraform.vim index 74b7808a..81fb938c 100644 --- a/indent/terraform.vim +++ b/indent/terraform.vim @@ -1,7 +1,4 @@ -if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'terraform') != -1 - finish -endif - +if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'terraform') == -1 " Only load this file if no other indent file was loaded if exists('b:did_indent') finish @@ -56,3 +53,4 @@ endfunction let &cpoptions = s:cpo_save unlet s:cpo_save +endif |