mirror of
https://github.com/tiyn/tccs.nvim.git
synced 2025-04-20 00:27:48 +02:00
Compare commits
3 Commits
fa75ae924a
...
3b3a1859cc
Author | SHA1 | Date | |
---|---|---|---|
3b3a1859cc | |||
42ef097a3e | |||
54c8e04705 |
@ -286,6 +286,23 @@ 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
|
||||||
|
Loading…
x
Reference in New Issue
Block a user