mirror of
https://github.com/rose-pine/neovim.git
synced 2025-10-15 12:38:53 +02:00
fix: adjust heading highlights to use group linking
This commit is contained in:
parent
2522f6a47e
commit
d3c3e2c656
1 changed files with 6 additions and 6 deletions
|
|
@ -930,12 +930,12 @@ local function set_highlights()
|
||||||
RenderMarkdownCode = { bg = palette.overlay },
|
RenderMarkdownCode = { bg = palette.overlay },
|
||||||
RenderMarkdownCodeInline = { fg = palette.text, bg = palette.overlay },
|
RenderMarkdownCodeInline = { fg = palette.text, bg = palette.overlay },
|
||||||
RenderMarkdownDash = { fg = palette.muted },
|
RenderMarkdownDash = { fg = palette.muted },
|
||||||
RenderMarkdownH1Bg = { bg = palette.iris, blend = 20 },
|
RenderMarkdownH1Bg = { bg = groups.h1, blend = 20 },
|
||||||
RenderMarkdownH2Bg = { bg = palette.foam, blend = 20 },
|
RenderMarkdownH2Bg = { bg = groups.h2, blend = 20 },
|
||||||
RenderMarkdownH3Bg = { bg = palette.rose, blend = 20 },
|
RenderMarkdownH3Bg = { bg = groups.h3, blend = 20 },
|
||||||
RenderMarkdownH4Bg = { bg = palette.gold, blend = 20 },
|
RenderMarkdownH4Bg = { bg = groups.h4, blend = 20 },
|
||||||
RenderMarkdownH5Bg = { bg = palette.pine, blend = 20 },
|
RenderMarkdownH5Bg = { bg = groups.h5, blend = 20 },
|
||||||
RenderMarkdownH6Bg = { bg = palette.leaf, blend = 20 },
|
RenderMarkdownH6Bg = { bg = groups.h6, blend = 20 },
|
||||||
RenderMarkdownQuote = { fg = palette.subtle },
|
RenderMarkdownQuote = { fg = palette.subtle },
|
||||||
RenderMarkdownTableFill = { link = "Conceal" },
|
RenderMarkdownTableFill = { link = "Conceal" },
|
||||||
RenderMarkdownTableHead = { fg = palette.subtle },
|
RenderMarkdownTableHead = { fg = palette.subtle },
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue