-
Notifications
You must be signed in to change notification settings - Fork 127
/
startify.vim
39 lines (34 loc) · 899 Bytes
/
startify.vim
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
if exists('g:vscode')
finish
endif
if exists('g:plug_installing_plugins')
Plug 'mhinz/vim-startify'
finish
endif
let g:startify_list_order = [
\ [' Last modified'],
\ 'dir',
\ [' Recent'],
\ 'files',
\ ]
let g:startify_skiplist = [
\ 'COMMIT_EDITMSG',
\ $VIMRUNTIME .'/doc',
\ 'bundle/.*/doc',
\ ]
let g:startify_files_number = 10
let g:startify_custom_indices = ['a', 'd', 'f', 'g', 'h']
let g:startify_change_to_dir = 0
let g:startify_custom_header = []
hi StartifyBracket ctermfg=240
hi StartifyFooter ctermfg=111
hi StartifyHeader ctermfg=203
hi StartifyPath ctermfg=245
hi StartifySlash ctermfg=240
" Show Startify
autocmd VimEnter *
\ if !argc() |
\ Startify |
\ execute "normal \<c-w>w" |
\ endif
let g:startify_recursive_dir = 1