Compare commits

..

No commits in common. "3b3a1859ccaec19b0b5b91dab1144184dd3896b7" and "fa75ae924ac0131c6f4c68b9ad4d18e0a8f5e14d" have entirely different histories.

View File

@ -286,23 +286,6 @@ theme.set_highlights = function(opts)
-- nvim-cursorword -- nvim-cursorword
hl(0, 'CursorWord', { underline = true }) 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 end
return theme return theme