diff options
Diffstat (limited to 'indent/nim.vim')
-rw-r--r-- | indent/nim.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/indent/nim.vim b/indent/nim.vim index 6b4ead6e..a6057962 100644 --- a/indent/nim.vim +++ b/indent/nim.vim @@ -1,5 +1,7 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'nim') == -1 - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'nim') != -1 + finish +endif + " Only load this indent file when no other was loaded. if exists("b:did_indent") finish @@ -142,5 +144,3 @@ endfunction " vim:sw=2 - -endif |