diff options
author | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-19 03:05:39 +0200 |
---|---|---|
committer | Adam Stankiewicz <sheerun@sher.pl> | 2020-10-19 03:05:39 +0200 |
commit | 5297baf28553a593518f47b1a941a9ea8540829a (patch) | |
tree | 70a297711486f8ccc16c5014fec6f78fe4246f8b | |
parent | 5e2607d93f98e0394d1d68b1d6592b2d0a11f52f (diff) | |
download | vim-polyglot-5297baf28553a593518f47b1a941a9ea8540829a.tar.gz vim-polyglot-5297baf28553a593518f47b1a941a9ea8540829a.zip |
Add doc for polyglot
-rw-r--r-- | doc/polyglot.txt | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/polyglot.txt b/doc/polyglot.txt new file mode 100644 index 00000000..14d8b997 --- /dev/null +++ b/doc/polyglot.txt @@ -0,0 +1,31 @@ +*polyglot-vim-plugin* Language pack for Vim + +CONFIGURATION *polyglot.vim* + +_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___| +___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__ +_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___| +___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__ + +You can disable vim-polyglot by putting using `g:polyglot_disabled` +option. It needs to be defined before vim-polyglot is loaded. + +``` +let g:polyglot_disabled = ['javascript', 'autoindent', 'sensible'] +``` + +What can be disabled: + +1. Language packs, like "javascript", "css" etc. +2. Support for detecting indentation like vim-sleuth ('autoindent') +3. Default vim settings from vim-sensible ('sensible') + + +You can file bugs, and find more information at: + +https://github.com/sheerun/vim-polyglot + +_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___| +___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__ +_|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___| +___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|___|__ |