add color support without changing defaults

This commit is contained in:
Marco Hinz 2013-04-29 12:36:48 +02:00
parent 406df759b7
commit c2dba47d38
3 changed files with 38 additions and 11 deletions

View file

@ -20,9 +20,10 @@ CONTENTS *startify-contents*
2.Usage..........................................|startify-usage| 2.Usage..........................................|startify-usage|
3.Options........................................|startify-options| 3.Options........................................|startify-options|
4.Commands.......................................|startify-commands| 4.Commands.......................................|startify-commands|
5.FAQ............................................|startify-faq| 5.Colors.........................................|startify-colors|
6.Author.........................................|startify-author| 6.FAQ............................................|startify-faq|
7.License........................................|startify-license| 7.Author.........................................|startify-author|
8.License........................................|startify-license|
============================================================================== ==============================================================================
@ -168,7 +169,27 @@ Open the startify buffer.
============================================================================== ==============================================================================
5. FAQ (Or: Typical rants) *startify-faq* 5. Colors *startify-colors*
You can overwrite the highlight groups used by startify. The plugins defines
these groups:
startifyBracket [,]
startifyNumber the numbers between []
startifyPath the path to a file
startifySlash slashes in paths
startifySpecial <empty buffer>,<quit>
Example: (my terminal emulator supports 256 colors)
hi StartifyBracket ctermfg=240
hi StartifyNumber ctermfg=215
hi StartifyPath ctermfg=245
hi StartifySlash ctermfg=240
==============================================================================
6. FAQ (Or: Typical rants) *startify-faq*
"I don't want the start screen to use cursorline!" "I don't want the start screen to use cursorline!"
-------------------------------------------------- --------------------------------------------------
@ -195,7 +216,7 @@ Some people swear it works for them with these settings:
============================================================================== ==============================================================================
6. About the author *startify-author* 7. About the author *startify-author*
My nick on Freenode IRC is mhi^. My nick on Freenode IRC is mhi^.
@ -208,7 +229,7 @@ Thank you for flying mhi airlines. Get the Vim on!
============================================================================== ==============================================================================
7. Licence *startify-license* 8. License *startify-license*
Copyright © Marco Hinz. Distributed under the same terms as Vim itself. Copyright © Marco Hinz. Distributed under the same terms as Vim itself.

View file

@ -87,7 +87,7 @@ function! s:insane_in_the_membrane() abort
endfor endfor
endif endif
call append('$', ['', ' [q] quit']) call append('$', ['', ' [q] <quit>'])
setlocal nomodifiable nomodified setlocal nomodifiable nomodified

View file

@ -7,11 +7,17 @@ if exists("b:current_syntax")
finish finish
endif endif
syntax match startifyDelimiter /\[\|\]/ let s:sep = startify#get_sep()
highlight link startifyDelimiter Delimiter
syntax match startifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter syntax match StartifySpecial /\V<empty buffer>\|<quit>/
highlight link startifyNumber Number syntax match StartifyBracket /\[\|\]/
syntax match StartifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=StartifyBracket
execute 'syntax match StartifySlash /\'. s:sep .'/'
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
highlight link StartifyBracket Delimiter
highlight link StartifyNumber Number
let b:current_syntax = 'startify' let b:current_syntax = 'startify'