diff --git a/lua/kanagawa-paper/highlights/editor.lua b/lua/kanagawa-paper/highlights/editor.lua index 318fbd8..92808b0 100644 --- a/lua/kanagawa-paper/highlights/editor.lua +++ b/lua/kanagawa-paper/highlights/editor.lua @@ -91,6 +91,14 @@ function M.setup(colors, opts) Pmenu = { fg = theme.ui.pmenu.fg, bg = theme.ui.pmenu.bg }, -- PmenuSel Popup menu: Selected item. PmenuSel = { fg = theme.ui.pmenu.fg_sel, bg = theme.ui.pmenu.bg_sel }, + -- PmenuKind Popup menu: Normal item "kind". + PmenuKind = { fg = theme.ui.fg_dim, bg = theme.ui.pmenu.bg }, + -- PmenuKindSel Popup menu: Selected item "kind". + PmenuKindSel = { fg = theme.ui.fg_dim, bg = theme.ui.pmenu.bg_sel }, + -- PmenuExtra Popup menu: Normal item "extra text". + PmenuExtra = { fg = theme.ui.special, bg = theme.ui.pmenu.bg }, + -- PmenuExtraSel Popup menu: Selected item "extra text". + PmenuExtraSel = { fg = theme.ui.special, bg = theme.ui.pmenu.bg_sel }, -- PmenuSbar Popup menu: Scrollbar. PmenuSbar = { bg = theme.ui.pmenu.bg_sbar }, -- PmenuThumb Popup menu: Thumb of the scrollbar. diff --git a/lua/kanagawa-paper/highlights/lsp.lua b/lua/kanagawa-paper/highlights/lsp.lua index 9a9c22d..fddd56c 100644 --- a/lua/kanagawa-paper/highlights/lsp.lua +++ b/lua/kanagawa-paper/highlights/lsp.lua @@ -11,7 +11,7 @@ function M.setup(colors, opts) -- ["@lsp.type.enumMember"] = { link = "Constant" }, -- ["@lsp.type.function"] = { link = "Function" }, -- ["@lsp.type.interface"] = { link = "Structure" }, - -- ["@lsp.type.macro"] = { link = "Macro" }, + ["@lsp.type.macro"] = { link = "Macro" }, ["@lsp.type.method"] = { link = "@function.method" }, -- Function ["@lsp.type.namespace"] = { link = "@module" }, -- Structure ["@lsp.type.parameter"] = { link = "@variable.parameter" }, -- Identifier diff --git a/lua/kanagawa-paper/highlights/plugins.lua b/lua/kanagawa-paper/highlights/plugins.lua index ef14b5a..9e45e90 100644 --- a/lua/kanagawa-paper/highlights/plugins.lua +++ b/lua/kanagawa-paper/highlights/plugins.lua @@ -174,8 +174,8 @@ function M.setup(colors, opts) CmpItemAbbrDeprecated = { fg = theme.syn.comment, strikethrough = true }, CmpItemAbbrMatch = { fg = theme.syn.fun }, CmpItemAbbrMatchFuzzy = { link = "CmpItemAbbrMatch" }, - CmpItemKindDefault = { fg = theme.syn.deprecated }, - CmpItemMenu = { fg = theme.syn.comment }, + CmpItemKindDefault = { fg = theme.ui.fg_dim }, + CmpItemMenu = { fg = theme.ui.fg_dim }, CmpItemKindText = { fg = theme.ui.fg }, CmpItemKindMethod = { link = "@function.method" }, CmpItemKindFunction = { link = "Function" },