From c2dba47d3841492cdaf206738547468f890bef79 Mon Sep 17 00:00:00 2001 From: Marco Hinz Date: Mon, 29 Apr 2013 12:36:48 +0200 Subject: [PATCH] add color support without changing defaults --- doc/startify.txt | 33 +++++++++++++++++++++++++++------ plugin/startify.vim | 2 +- syntax/startify.vim | 14 ++++++++++---- 3 files changed, 38 insertions(+), 11 deletions(-) diff --git a/doc/startify.txt b/doc/startify.txt index 0a63eb4..c4bc119 100644 --- a/doc/startify.txt +++ b/doc/startify.txt @@ -20,9 +20,10 @@ CONTENTS *startify-contents* 2.Usage..........................................|startify-usage| 3.Options........................................|startify-options| 4.Commands.......................................|startify-commands| - 5.FAQ............................................|startify-faq| - 6.Author.........................................|startify-author| - 7.License........................................|startify-license| + 5.Colors.........................................|startify-colors| + 6.FAQ............................................|startify-faq| + 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 , + +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!" -------------------------------------------------- @@ -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^. @@ -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. diff --git a/plugin/startify.vim b/plugin/startify.vim index dc2f143..bfd9184 100644 --- a/plugin/startify.vim +++ b/plugin/startify.vim @@ -87,7 +87,7 @@ function! s:insane_in_the_membrane() abort endfor endif - call append('$', ['', ' [q] quit']) + call append('$', ['', ' [q] ']) setlocal nomodifiable nomodified diff --git a/syntax/startify.vim b/syntax/startify.vim index e50eb8e..b3ec8e6 100644 --- a/syntax/startify.vim +++ b/syntax/startify.vim @@ -7,11 +7,17 @@ if exists("b:current_syntax") finish endif -syntax match startifyDelimiter /\[\|\]/ -highlight link startifyDelimiter Delimiter +let s:sep = startify#get_sep() -syntax match startifyNumber /\v\[[iq[:digit:]]+\]/hs=s+1,he=e-1 contains=startifyDelimiter -highlight link startifyNumber Number +syntax match StartifySpecial /\V\|/ +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'