diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-17 15:56:13 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-17 15:56:13 +0200 |
commit | 00213842594d8262c35b64b03b176d6e831a6e94 (patch) | |
tree | 629b59a6f242cfa022e23620acdafe1dc953b051 /plugin | |
parent | af3ebda71002223b4bc6d4cc79a0359523eaa385 (diff) | |
download | vim-polyglot-4.13.5.tar.gz vim-polyglot-4.13.5.zip |
Make sure polyglot_disable does not skip native vim files, fixes #591v4.13.5
Diffstat (limited to 'plugin')
-rw-r--r-- | plugin/polyglot.vim | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugin/polyglot.vim b/plugin/polyglot.vim index 3148cff7..7cfa1069 100644 --- a/plugin/polyglot.vim +++ b/plugin/polyglot.vim @@ -1,3 +1,3 @@ if !exists("did_load_polyglot") - runtime! ftdetect/polyglot.vim + filetype plugin indent on endif |