diff options
Diffstat (limited to 'ftplugin/raml.vim')
-rw-r--r-- | ftplugin/raml.vim | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ftplugin/raml.vim b/ftplugin/raml.vim index 142e70bd..4cf8f5c2 100644 --- a/ftplugin/raml.vim +++ b/ftplugin/raml.vim @@ -1,5 +1,5 @@ -if !exists('g:polyglot_disabled') || index(g:polyglot_disabled, 'raml') == -1 - -set ts=2 sts=2 sw=2 et - +if exists('g:polyglot_disabled') && index(g:polyglot_disabled, 'raml') != -1 + finish endif + +set ts=2 sts=2 sw=2 et |