| 123456789101112131415161718192021222324252627282930 |
- " Plugin: https://github.com/mhinz/vim-startify
- " Description: Start screen displaying recently used stuff.
- " Maintainer: Marco Hinz <http://github.com/mhinz>
- " Version: 1.6
- if exists("b:current_syntax")
- finish
- endif
- let s:sep = startify#get_separator()
- syntax match StartifySpecial /\V<empty buffer>\|<quit>/
- syntax match StartifyBracket /\[\|\]/
- syntax match StartifyNumber /\[[^BSV]\+\]/hs=s+1,he=e-1 contains=StartifyBracket
- syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,StartifyPath,StartifySpecial
- execute 'syntax match StartifySlash /\'. s:sep .'/'
- execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
- if exists('g:startify_custom_header')
- execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_custom_header) + 1) .'l/'
- endif
- highlight link StartifyHeader Normal
- highlight link StartifyBracket Delimiter
- highlight link StartifyNumber Number
- let b:current_syntax = 'startify'
- " vim: et sw=2 sts=2
|