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()
|
2016-11-26 10:23:02 +00:00
|
|
|
let s:padding_left = repeat(' ', get(g:, 'startify_padding_left', 3))
|
2013-04-23 14:41:02 +00:00
|
|
|
|
2013-09-19 08:18:34 +00:00
|
|
|
syntax sync fromstart
|
|
|
|
|
2016-11-26 10:23:02 +00:00
|
|
|
execute 'syntax match StartifyBracket /.*\%'. (len(s:padding_left) + 6) .'c/ contains=
|
2014-09-02 14:28:10 +00:00
|
|
|
\ StartifyNumber,
|
2016-11-26 10:23:02 +00:00
|
|
|
\ StartifySelect'
|
2013-05-02 13:00:00 +00:00
|
|
|
syntax match StartifySpecial /\V<empty buffer>\|<quit>/
|
2014-09-02 15:56:15 +00:00
|
|
|
syntax match StartifyNumber /^\s*\[\zs[^BSVT]\{-}\ze\]/
|
|
|
|
syntax match StartifySelect /^\s*\[\zs[BSVT]\{-}\ze\]/
|
2016-02-12 13:49:01 +00:00
|
|
|
syntax match StartifyVar /\$[^\/]\+/
|
2014-09-02 14:28:10 +00:00
|
|
|
syntax match StartifyFile /.*/ contains=
|
|
|
|
\ StartifyBracket,
|
|
|
|
\ StartifyPath,
|
|
|
|
\ StartifySpecial,
|
2013-04-29 10:36:48 +00:00
|
|
|
|
|
|
|
execute 'syntax match StartifySlash /\'. s:sep .'/'
|
2016-11-26 10:23:02 +00:00
|
|
|
execute 'syntax match StartifyPath /\%'. (len(s:padding_left) + 6) .'c.*\'. s:sep .'/ contains=StartifySlash,StartifyVar'
|
2013-04-29 10:36:48 +00:00
|
|
|
|
2016-03-14 14:29:20 +00:00
|
|
|
execute 'syntax region StartifyHeader start=/\%1l/ end=/\%'. (len(g:startify_header) + 2) .'l/'
|
2013-07-11 11:37:04 +00:00
|
|
|
|
2013-09-04 07:25:33 +00:00
|
|
|
if exists('g:startify_custom_footer')
|
2018-04-27 08:55:55 +00:00
|
|
|
execute 'syntax region StartifyFooter start=/\%'. startify#get_lastline() .'l/ end=/\_.*/'
|
2014-11-15 08:32:20 +00:00
|
|
|
endif
|
|
|
|
|
2016-10-15 12:43:29 +00:00
|
|
|
if exists('b:startify.section_header_lines')
|
2016-10-14 18:14:16 +00:00
|
|
|
for line in b:startify.section_header_lines
|
2014-11-15 08:32:20 +00:00
|
|
|
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
|
2016-02-12 13:49:01 +00:00
|
|
|
highlight default link StartifyVar StartifyPath
|
2013-04-23 14:41:02 +00:00
|
|
|
|
|
|
|
let b:current_syntax = 'startify'
|