Skip to content

Commit

Permalink
fix(inlay_hints): surround or logic with parens (catppuccin#523)
Browse files Browse the repository at this point in the history
  • Loading branch information
Yuhf7 committed Jun 24, 2023
1 parent 844cf6f commit 650799f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lua/catppuccin/groups/integrations/native_lsp.lua
Original file line number Diff line number Diff line change
Expand Up @@ -89,8 +89,8 @@ function M.get()
-- fg of `Comment`
fg = C.overlay0,
-- bg of `CursorLine`
bg = O.transparent_background
or not inlay_hints.background and C.none
bg = (O.transparent_background
or not inlay_hints.background) and C.none
or U.vary_color({ latte = U.lighten(C.mantle, 0.70, C.base) }, U.darken(C.surface0, 0.64, C.base)),
}, -- virtual text of the inlay hints
LspInfoBorder = { link = "FloatBorder" }, -- LspInfo border
Expand Down

0 comments on commit 650799f

Please sign in to comment.