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
382 B
Lua

local M = {}
function M.get(cp)
return {
markdownHeadingDelimiter = { fg = cp.orange, style = "bold" },
markdownCode = { fg = cp.catppuccino3 },
markdownCodeBlock = { fg = cp.catppuccino3 },
markdownH1 = { fg = cp.catppuccino5, style = "bold" },
markdownH2 = { fg = cp.blue, style = "bold" },
markdownLinkText = { fg = cp.blue, style = "underline" },
}
end
return M