Fix polyglot_disabled docs, closes #555

This commit is contained in:
Adam Stankiewicz
2020-09-23 09:43:36 +02:00
committed by GitHub
parent 378dcb3878
commit 92cb76e33a

View File

@@ -255,9 +255,11 @@ Please make sure you have `syntax on` in your `.vimrc` (or use something like [s
Individual language packs can be disabled by setting `g:polyglot_disabled` as follows:
```vim
let g:polyglot_disabled = ['css']
let g:polyglot_disabled = ['markdown']
```
The list of available languages to disable is shown above.
*Please declare this variable before polyglot is loaded (at the top of .vimrc)*
Please note that disabling a language won't make in your vim startup any faster / slower (only for specific this specific filetype). All plugins are loaded lazily, on demand.