mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
chore(highlight): update ibl highligts
- revert old highlights for legacy usage - add `IblWhitespace` when highlighting white spaces - add ibl highlights when using transparency
This commit is contained in:
parent
09f2555163
commit
c28e79cbc0
1 changed files with 10 additions and 0 deletions
|
|
@ -372,6 +372,12 @@ local function set_highlights()
|
||||||
-- lukas-reineke/indent-blankline.nvim
|
-- lukas-reineke/indent-blankline.nvim
|
||||||
IblIndent = { fg = palette.overlay },
|
IblIndent = { fg = palette.overlay },
|
||||||
IblScope = { fg = palette.foam },
|
IblScope = { fg = palette.foam },
|
||||||
|
IblWhitespace = { fg = palette.overlay },
|
||||||
|
|
||||||
|
-- for legacy usage
|
||||||
|
IndentBlanklineChar = { fg = palette.muted, nocombine = true },
|
||||||
|
IndentBlanklineSpaceChar = { fg = palette.muted, nocombine = true },
|
||||||
|
IndentBlanklineSpaceCharBlankline = { fg = palette.muted, nocombine = true },
|
||||||
|
|
||||||
-- hrsh7th/nvim-cmp
|
-- hrsh7th/nvim-cmp
|
||||||
CmpItemAbbr = { fg = palette.subtle },
|
CmpItemAbbr = { fg = palette.subtle },
|
||||||
|
|
@ -616,6 +622,10 @@ local function set_highlights()
|
||||||
TelescopeSelectionCaret = { fg = palette.rose },
|
TelescopeSelectionCaret = { fg = palette.rose },
|
||||||
|
|
||||||
WhichKeyFloat = { bg = "NONE" },
|
WhichKeyFloat = { bg = "NONE" },
|
||||||
|
|
||||||
|
IblIndent = { fg = palette.overlay, bg = "NONE" },
|
||||||
|
IblScope = { fg = palette.foam, bg = "NONE" },
|
||||||
|
IblWhitespace = { fg = palette.overlay, bg = "NONE" },
|
||||||
}
|
}
|
||||||
|
|
||||||
if styles.transparency then
|
if styles.transparency then
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue