Skip to content

Commit

Permalink
fix(lsp): remove inlay and codelens bg for transparent themes
Browse files Browse the repository at this point in the history
  • Loading branch information
sho-87 committed Aug 7, 2024
1 parent 07d9685 commit e7eb180
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/kanagawa-paper/highlights/lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ function M.setup(colors, opts)
LspReferenceText = { bg = "None", fg = theme.ui.fg, bold = true },
LspReferenceRead = { link = "LspReferenceText" },
LspReferenceWrite = { bg = "None", fg = theme.ui.fg, bold = true, underline = true },
LspInlayHint = { link = "Comment" },
LspInlayHint = { fg = theme.syn.comment, bg = "None", italic = true },
LspSignatureActiveParameter = { fg = theme.diag.warning },
LspCodeLens = { fg = theme.syn.comment, italic = false },
LspCodeLens = { fg = theme.syn.comment, bg = "None", italic = false },

-- ["@lsp.type.class"] = { link = "Structure" },
-- ["@lsp.type.decorator"] = { link = "Function" },
Expand Down

0 comments on commit e7eb180

Please sign in to comment.