You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nvim/lua/catppuccin/core/integrations/markdown.lua

19 lines
473 B
Lua

local M = {}
function M.get(cp)
return {
markdownHeadingDelimiter = { fg = cp.peach, style = "bold" },
markdownCode = { fg = cp.flamingo },
markdownCodeBlock = { fg = cp.flamingo },
markdownLinkText = { fg = cp.blue, style = "underline" },
markdownH1 = { fg = cp.lavender },
markdownH2 = { fg = cp.mauve },
markdownH3 = { fg = cp.green },
markdownH4 = { fg = cp.yellow },
markdownH5 = { fg = cp.pink },
markdownH6 = { fg = cp.teal },
}
end
return M