mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 02:20:03 +08:00
10 lines
206 B
VimL
10 lines
206 B
VimL
if exists('b:current_syntax')
|
|
finish
|
|
endif
|
|
let b:current_syntax = 'git-blame'
|
|
syntax case ignore
|
|
syn match GitBlameTime /[^ ]*\s\+[^ ]*\s\+[^ ]*\s\+\d\+:\d\+:\d\+$/
|
|
|
|
hi def link GitBlameTime Statement
|
|
|