diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-09-23 09:43:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-23 09:43:36 +0200 |
commit | 92cb76e33a9ba4d8ac72018a26c2e99ba50d971c (patch) | |
tree | cbd5e9ce53af395174f75f6a7ab1ce7d28119580 /README.md | |
parent | 378dcb387823e840c13722d4b514086c8dfa3527 (diff) | |
download | vim-polyglot-92cb76e33a9ba4d8ac72018a26c2e99ba50d971c.tar.gz vim-polyglot-92cb76e33a9ba4d8ac72018a26c2e99ba50d971c.zip |
Fix polyglot_disabled docs, closes #555
Diffstat (limited to 'README.md')
-rw-r--r-- | README.md | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -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. |