vim-sussify/syntax/startify.vim

55 lines
1.7 KiB
VimL
Raw Normal View History

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
2015-04-28 13:34:11 +00:00
" Description: A fancy start screen for Vim.
2013-04-23 14:41:02 +00:00
" Maintainer: Marco Hinz <http://github.com/mhinz>
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
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>/
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,
execute 'syntax match StartifySlash /\'. s:sep .'/'
execute 'syntax match StartifyPath /\%9c.*\'. s:sep .'/ contains=StartifySlash'
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/'
endif
2013-09-04 07:25:33 +00:00
if exists('g:startify_custom_footer')
execute 'syntax region StartifyFooter start=/\%'. startify#get_lastline() .'l/ end=/*/'
endif
if exists('b:startify_section_header_lines')
for line in b:startify_section_header_lines
execute 'syntax region StartifySection start=/\%'. line .'l/ end=/$/'
endfor
2013-09-04 07:25:33 +00:00
endif
2013-07-25 11:53:34 +00:00
highlight default link StartifyBracket Delimiter
2014-09-22 13:40:07 +00:00
highlight default link StartifyFile Identifier
highlight default link StartifyFooter Title
highlight default link StartifyHeader Title
2013-07-25 11:53:34 +00:00
highlight default link StartifyNumber Number
2014-09-22 13:40:07 +00:00
highlight default link StartifyPath Directory
highlight default link StartifySection Statement
2014-09-02 14:28:10 +00:00
highlight default link StartifySelect Title
2014-09-22 13:40:07 +00:00
highlight default link StartifySlash Delimiter
2014-10-30 16:09:29 +00:00
highlight default link StartifySpecial Comment
2013-04-23 14:41:02 +00:00
let b:current_syntax = 'startify'