Rework the default skiplist

This commit is contained in:
Marco Hinz 2017-12-06 20:11:16 +01:00
parent b89579e456
commit c905a0c959
No known key found for this signature in database
GPG key ID: 1C980A1B657B4A4F
2 changed files with 6 additions and 7 deletions

View file

@ -20,9 +20,10 @@ let s:tf = exists('g:startify_transformations')
let s:skiplist = get(g:, 'startify_skiplist', [
\ 'COMMIT_EDITMSG',
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc',
\ 'bundle/.*/doc',
\ 'plugged/.*/doc',
\ 'runtime/doc/.*\.txt',
\ 'bundle/.*/doc/.*\.txt',
\ 'plugged/.*/doc/.*\.txt',
\ escape(fnamemodify(resolve($VIMRUNTIME), ':p'), '\') .'doc/.*\.txt',
\ ])
let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3))