Skip to content

Commit

Permalink
feat: upstream updates
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-87 committed Jun 19, 2024
1 parent 5547588 commit d21f0f9
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions lua/kanagawa-paper/highlights/editor.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion lua/kanagawa-paper/highlights/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions lua/kanagawa-paper/highlights/plugins.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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" },
Expand Down

0 comments on commit d21f0f9

Please sign in to comment.