Add "plugged/.*/doc" to default skiplist

We have "bundle" already, so add "plugged" as well. These two are the most
commonly used directories for plugins.
This commit is contained in:
Marco Hinz 2017-12-05 14:52:14 +01:00
parent 17ef51a2d1
commit cbb1b487d0
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F

View file

@ -22,6 +22,7 @@ let s:skiplist = get(g:, 'startify_skiplist', [
\ 'COMMIT_EDITMSG',
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc',
\ 'bundle/.*/doc',
\ 'plugged/.*/doc',
\ ])
let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3))