Merge pull request #56 from 89luca89/add-yaml-colors

Add Blue accent to YAML keys and constants
This commit is contained in:
Tomáš Iser 2020-06-03 18:43:14 +02:00 committed by GitHub
commit 910687ffa6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -430,3 +430,6 @@ call <sid>hi('luaFuncArgName', s:cdLightBlue, {}, 'none', {})
call <sid>hi('luaFuncKeyword', s:cdPink, {}, 'none', {})
call <sid>hi('luaLocal', s:cdPink, {}, 'none', {})
call <sid>hi('luaBuiltIn', s:cdBlue, {}, 'none', {})
" YAML:
call <sid>hi('yamlKey', s:cdBlue, {}, 'none', {})
call <sid>hi('yamlConstant', s:cdBlue, {}, 'none', {})