vim-sussify/syntax/startify.vim
Marco Hinz 4711a54cf5 new option: g:startify_custom_indices
People can now choose to create their own index mapping instead of
having the default behaviour of increasing numbers.

Closes #17.
2013-04-30 13:32:30 +02:00

26 lines
826 B
VimL

" Plugin: https://github.com/mhinz/vim-startify
" Description: Start screen displaying recently used stuff.
" Maintainer: Marco Hinz <http://github.com/mhinz>
" Version: 1.4
if exists("b:current_syntax")
finish
endif
let s:sep = startify#get_sep()
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
syntax match StartifyBracket /\[\|\]/
syntax match StartifyNumber /\v\[.+\]/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'
highlight link StartifyBracket Delimiter
highlight link StartifyNumber Number
let b:current_syntax = 'startify'
" vim: et sw=2 sts=2