Fix treesitter function color and add nvim-cmp highlights
This commit is contained in:
parent
670fed53a2
commit
22349c7ea0
1 changed files with 13 additions and 1 deletions
|
|
@ -261,7 +261,7 @@ call <sid>hi('TSConditional', s:cdPink, {}, 'none', {})
|
||||||
call <sid>hi('TSRepeat', s:cdPink, {}, 'none', {})
|
call <sid>hi('TSRepeat', s:cdPink, {}, 'none', {})
|
||||||
call <sid>hi('TSLabel', s:cdLightBlue, {}, 'none', {})
|
call <sid>hi('TSLabel', s:cdLightBlue, {}, 'none', {})
|
||||||
call <sid>hi('TSKeyword', s:cdBlue, {}, 'none', {})
|
call <sid>hi('TSKeyword', s:cdBlue, {}, 'none', {})
|
||||||
call <sid>hi('TSKeywordFunction', s:cdPink, {}, 'none', {})
|
call <sid>hi('TSKeywordFunction', s:cdBlue, {}, 'none', {})
|
||||||
call <sid>hi('TSKeywordOperator', s:cdBlue, {}, 'none', {})
|
call <sid>hi('TSKeywordOperator', s:cdBlue, {}, 'none', {})
|
||||||
call <sid>hi('TSOperator', s:cdFront, {}, 'none', {})
|
call <sid>hi('TSOperator', s:cdFront, {}, 'none', {})
|
||||||
call <sid>hi('TSException', s:cdPink, {}, 'none', {})
|
call <sid>hi('TSException', s:cdPink, {}, 'none', {})
|
||||||
|
|
@ -551,3 +551,15 @@ call <sid>hi('yamlConstant', s:cdBlue, {}, 'none', {})
|
||||||
|
|
||||||
" Coc Explorer:
|
" Coc Explorer:
|
||||||
call <sid>hi('CocExplorerIndentLine', s:cdCursorDark, {}, 'none', {})
|
call <sid>hi('CocExplorerIndentLine', s:cdCursorDark, {}, 'none', {})
|
||||||
|
|
||||||
|
" nvim-cmp
|
||||||
|
call <sid>hi('CmpItemAbbrMatch', s:cdBlue, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemAbbrMatchFuzzy', s:cdBlue, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindVariable', s:cdLightBlue, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindInterface', s:cdLightBlue, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindText', s:cdLightBlue, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindFunction', s:cdPink, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindMethod ', s:cdPink, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindKeyword', s:cdFront, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindProperty', s:cdFront, {}, 'none', {})
|
||||||
|
call <sid>hi('CmpItemKindUnit', s:cdFront, {}, 'none', {})
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue