fix(render-markdown): add highlights for callout (#745)

This commit is contained in:
yayoyuyu 2024-08-07 09:13:43 +09:00 committed by GitHub
parent 68b92f9a8d
commit 03a2f35445
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -10,6 +10,11 @@ function M.get()
RenderMarkdownBullet = { fg = C.sky },
RenderMarkdownTableHead = { fg = C.blue },
RenderMarkdownTableRow = { fg = C.lavender },
RenderMarkdownSuccess = { fg = C.green },
RenderMarkdownInfo = { fg = C.sky },
RenderMarkdownHint = { fg = C.teal },
RenderMarkdownWarn = { fg = C.yellow },
RenderMarkdownError = { fg = C.red },
}
local syntax = require("catppuccin.groups.syntax").get()