2013-09-24 15:41:31 +00:00
|
|
|
" vim: et sw=2 sts=2
|
|
|
|
|
2013-04-23 14:41:02 +00:00
|
|
|
" Plugin: https://github.com/mhinz/vim-startify
|
|
|
|
" Description: Start screen displaying recently used stuff.
|
|
|
|
" Maintainer: Marco Hinz <http://github.com/mhinz>
|
2013-09-04 07:38:53 +00:00
|
|
|
" Version: 1.8
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
if exists("b:current_syntax")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-04-30 11:34:25 +00:00
|
|
|
let s:sep = startify#get_separator()
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-09-19 08:18:34 +00:00
|
|
|
syntax sync fromstart
|
|
|
|
|
2014-09-02 14:28:10 +00:00
|
|
|
syntax match StartifyBracket /.*\%9c/ contains=
|
|
|
|
\ StartifyNumber,
|
|
|
|
\ StartifySelect,
|
2013-05-02 13:00:00 +00:00
|
|
|
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
2014-09-02 15:56:15 +00:00
|
|
|
syntax match StartifyNumber /^\s*\[\zs[^BSVT]\{-}\ze\]/
|
|
|
|
syntax match StartifySelect /^\s*\[\zs[BSVT]\{-}\ze\]/
|
2014-09-02 14:28:10 +00:00
|
|
|
syntax match StartifyFile /.*/ contains=
|
|
|
|
\ StartifyBracket,
|
|
|
|
\ StartifyPath,
|
|
|
|
\ StartifySpecial,
|
2013-04-29 10:36:48 +00:00
|
|
|
|
|
|
|
execute 'syntax match StartifySlash /\'. s:sep .'/'
|
|
|
|
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
|
|
|
|
|
2013-07-11 11:37:04 +00:00
|
|
|
if exists('g:startify_custom_header')
|
2013-07-11 12:05:22 +00:00
|
|
|
execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_custom_header) + 2) .'l/'
|
2013-07-11 11:37:04 +00:00
|
|
|
endif
|
|
|
|
|
2013-09-04 07:25:33 +00:00
|
|
|
if exists('g:startify_custom_footer')
|
2014-03-31 16:09:40 +00:00
|
|
|
autocmd startify User Startified
|
2013-09-04 07:25:33 +00:00
|
|
|
\ execute 'syntax region StartifyFooter start=/\%'. (startify#get_lastline() + 1) .'l/ end=/*/' |
|
2014-03-31 16:09:40 +00:00
|
|
|
\ autocmd! startify User
|
2013-09-04 07:25:33 +00:00
|
|
|
endif
|
|
|
|
|
2013-07-25 11:53:34 +00:00
|
|
|
highlight default link StartifyBracket Delimiter
|
2014-09-02 14:28:10 +00:00
|
|
|
highlight default link StartifyFooter Normal
|
|
|
|
highlight default link StartifyHeader Normal
|
2013-07-25 11:53:34 +00:00
|
|
|
highlight default link StartifyNumber Number
|
2013-10-22 11:01:32 +00:00
|
|
|
highlight default link StartifySection Special
|
2014-09-02 14:28:10 +00:00
|
|
|
highlight default link StartifySelect Title
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
let b:current_syntax = 'startify'
|