diff options
| author | Xun <58657914+eeeXun@users.noreply.github.com> | 2023-04-11 02:38:48 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-04-10 15:38:48 -0300 |
| commit | de4e3380575acc1bc9a349d32f028301dea54dcd (patch) | |
| tree | 8afeee05f78a8eb8f7afbb1a944c155c29a124ae | |
| parent | 046bd22cc704fef4f19d6a9320fc27bf4527479f (diff) | |
| download | gruvbox-de4e3380575acc1bc9a349d32f028301dea54dcd.tar.gz gruvbox-de4e3380575acc1bc9a349d32f028301dea54dcd.tar.xz | |
feat: add cmp missing highlight (#238)
| -rw-r--r-- | lua/gruvbox/groups.lua | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lua/gruvbox/groups.lua b/lua/gruvbox/groups.lua index 834c9d4..b7a2d9d 100644 --- a/lua/gruvbox/groups.lua +++ b/lua/gruvbox/groups.lua @@ -378,9 +378,11 @@ M.setup = function() CmpItemAbbrMatchFuzzy = { link = "GruvboxBlueUnderline" }, CmpItemMenu = { link = "GruvboxGray" }, CmpItemKindText = { link = "GruvboxOrange" }, + CmpItemKindVariable = { link = "GruvboxOrange" }, CmpItemKindMethod = { link = "GruvboxBlue" }, CmpItemKindFunction = { link = "GruvboxBlue" }, CmpItemKindConstructor = { link = "GruvboxYellow" }, + CmpItemKindUnit = { link = "GruvboxBlue" }, CmpItemKindField = { link = "GruvboxBlue" }, CmpItemKindClass = { link = "GruvboxYellow" }, CmpItemKindInterface = { link = "GruvboxYellow" }, @@ -388,9 +390,14 @@ M.setup = function() CmpItemKindProperty = { link = "GruvboxBlue" }, CmpItemKindValue = { link = "GruvboxOrange" }, CmpItemKindEnum = { link = "GruvboxYellow" }, + CmpItemKindOperator = { link = "GruvboxYellow" }, CmpItemKindKeyword = { link = "GruvboxPurple" }, + CmpItemKindEvent = { link = "GruvboxPurple" }, + CmpItemKindReference = { link = "GruvboxPurple" }, + CmpItemKindColor = { link = "GruvboxPurple" }, CmpItemKindSnippet = { link = "GruvboxGreen" }, CmpItemKindFile = { link = "GruvboxBlue" }, + CmpItemKindFolder = { link = "GruvboxBlue" }, CmpItemKindEnumMember = { link = "GruvboxAqua" }, CmpItemKindConstant = { link = "GruvboxOrange" }, CmpItemKindStruct = { link = "GruvboxYellow" }, |
