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-04-29 21:20:05 +00:00
|
|
|
" Version: 1.4
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
if exists("b:current_syntax")
|
|
|
|
finish
|
|
|
|
endif
|
|
|
|
|
2013-04-29 10:36:48 +00:00
|
|
|
let s:sep = startify#get_sep()
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-04-29 13:06:40 +00:00
|
|
|
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
2013-04-29 10:36:48 +00:00
|
|
|
syntax match StartifyBracket /\[\|\]/
|
2013-04-30 11:32:30 +00:00
|
|
|
syntax match StartifyNumber /\v\[.+\]/hs=s+1,he=e-1 contains=StartifyBracket
|
2013-04-29 22:35:16 +00:00
|
|
|
syntax match StartifyFile /.*/ contains=StartifyBracket,StartifyNumber,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'
|
|
|
|
|
|
|
|
highlight link StartifyBracket Delimiter
|
|
|
|
highlight link StartifyNumber Number
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
let b:current_syntax = 'startify'
|
|
|
|
|
|
|
|
" vim: et sw=2 sts=2
|