Compare commits

..

3 Commits

Author SHA1 Message Date
3b3a1859cc checking markdown 2024-02-07 05:31:55 +01:00
42ef097a3e checking markdown 2024-02-07 05:30:59 +01:00
54c8e04705 checking markdown 2024-02-07 05:25:26 +01:00

View File

@ -286,6 +286,23 @@ theme.set_highlights = function(opts)
-- nvim-cursorword
hl(0, 'CursorWord', { underline = true })
-- markup
hl(0, '@text', { fg = c.fg }) -- Legacy
hl(0, '@markup.strong', { fg = c.fg, bold = true })
hl(0, '@markup.italic', { fg = c.fg, italic = true })
hl(0, '@markup.underline', { fg = c.fg, bg = 'NONE' })
hl(0, '@markup.strikethrough', { fg = c.fg, strikethrough = true })
hl(0, '@markup.heading', { fg = c.bold, bold = true })
hl(0, '@markup.raw', { fg = c.fg })
hl(0, '@markup.raw.markdown', { fg = c.string })
hl(0, '@markup.raw.markdown_inline', { fg = c.string })
hl(0, '@markup.link.label', { fg = c.tag })
hl(0, '@markup.link.url', { fg = c.fg })
hl(0, '@markup.list.checked', { link = 'Todo' })
hl(0, '@markup.list.unchecked', { link = 'Todo' })
hl(0, '@textReference', { fg = c.fg })
hl(0, '@stringEscape', { fg = c.fg, bold = true })
end
return theme