vim-sussify/syntax/startify.vim

56 lines
1.9 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()
let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3))
2013-04-23 14:41:02 +00:00
syntax sync fromstart
execute 'syntax match StartifyBracket /.*\%'. (len(s:padding_left) + 6) .'c/ contains=
2014-09-02 14:28:10 +00:00
\ 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\]/
syntax match StartifyVar /\$[^\/]\+/
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 /\%'. (len(s:padding_left) + 6) .'c.*\'. s:sep .'/ contains=StartifySlash,StartifyVar'
execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_header) + 2) .'l/'
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
2016-10-15 12:43:29 +00:00
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
highlight default link StartifyVar StartifyPath
2013-04-23 14:41:02 +00:00
let b:current_syntax = 'startify'