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/catppuccino/core/integrations/markdown.lua

15 lines
406 B
Lua

local M = {}
function M.get(cp)
return {
markdownHeadingDelimiter = { fg = cp.katppuccino6, style = "bold" },
markdownCode = { fg = cp.katppuccino2 },
markdownCodeBlock = { fg = cp.katppuccino2 },
markdownH1 = { fg = cp.katppuccino4, style = "bold" },
markdownH2 = { fg = cp.catppuccino10, style = "bold" },
markdownLinkText = { fg = cp.catppuccino10, style = "underline" },
}
end
return M