From 89ab6bca84cead8ecf132791b50dcf3743378b18 Mon Sep 17 00:00:00 2001 From: Folke Lemaitre Date: Wed, 1 Mar 2023 22:54:24 +0100 Subject: [PATCH] feat(cmp): added color for copilot item kind --- lua/tokyonight/theme.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/lua/tokyonight/theme.lua b/lua/tokyonight/theme.lua index b0a1b3c..7224b3e 100644 --- a/lua/tokyonight/theme.lua +++ b/lua/tokyonight/theme.lua @@ -523,6 +523,7 @@ function M.setup() CmpItemKindConstant = { fg = c.magenta, bg = c.none }, CmpItemKindReference = { fg = c.magenta, bg = c.none }, CmpItemKindValue = { fg = c.magenta, bg = c.none }, + CmpItemKindCopilot = { fg = c.teal, bg = c.none }, CmpItemKindFunction = { fg = c.blue, bg = c.none }, CmpItemKindMethod = { fg = c.blue, bg = c.none },