Skip to content

Commit

Permalink
fix(coc): improve inlay hints (#582)
Browse files Browse the repository at this point in the history
* Make CocInlayHint behave like comment

* chore: prettify

---------

Co-authored-by: Egor Martynov <martynovegorOF@yandex.ru>
  • Loading branch information
XChy and mrtnvgr committed Sep 23, 2023
1 parent 85e9360 commit 3d9a5ed
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions lua/catppuccin/groups/integrations/coc_nvim.lua
Expand Up @@ -6,8 +6,13 @@ function M.get()
-- Custom popup menu since coc v0.0.82
CocMenuSel = { link = "PmenuSel" },
CocPumSearch = { fg = C.sky, style = { "bold" } },
-- InlayHints
CocInlayHint = { fg = C.teal },

-- Inlay hints
CocInlayHint = {
-- fg of `Comment`
fg = C.overlay0,
style = { "italic" },
},
}
end

Expand Down

0 comments on commit 3d9a5ed

Please sign in to comment.