vim-sussify/syntax/startify.vim

26 lines
818 B
VimL
Raw Normal View History

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-05-08 15:19:19 +00:00
" Version: 1.5
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-05-02 13:00:00 +00:00
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'
2013-05-02 13:00:00 +00:00
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