Skip to content

Commit

Permalink
Merge pull request #121 from VytautasT/coc-symbol-highlight
Browse files Browse the repository at this point in the history
feat: highlight coc symbol under cursor
  • Loading branch information
Mofiqul authored Mar 19, 2023
2 parents 282d63c + c34c9fe commit 51520c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lua/vscode/theme.lua
Original file line number Diff line number Diff line change
Expand Up @@ -481,6 +481,11 @@ theme.set_highlights = function(opts)
hl(0, 'LspReferenceRead', { fg = 'NONE', bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue })
hl(0, 'LspReferenceWrite', { fg = 'NONE', bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue })

-- COC.nvim
hl(0, 'CocHighlightText', { fg = 'NONE', bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue })
hl(0, 'CocHighlightRead', { fg = 'NONE', bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue })
hl(0, 'CocHighlightWrite', { fg = 'NONE', bg = isDark and c.vscPopupHighlightGray or c.vscPopupHighlightLightBlue })

-- Nvim compe
hl(0, 'CmpItemKindVariable', { fg = c.vscLightBlue, bg = 'NONE' })
hl(0, 'CmpItemKindInterface', { fg = c.vscLightBlue, bg = 'NONE' })
Expand Down

0 comments on commit 51520c4

Please sign in to comment.