mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-24 05:20:04 +08:00
9 lines
174 B
VimL
Vendored
9 lines
174 B
VimL
Vendored
if exists('b:current_syntax')
|
|
finish
|
|
endif
|
|
let b:current_syntax = 'git-config'
|
|
syntax case ignore
|
|
syn match GitConfigKey /.*\(=\)\@=/
|
|
|
|
hi def link GitConfigKey Statement
|