mirror of https://github.com/sgoudham/nvim.git
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.
15 lines
404 B
Lua
15 lines
404 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.katppuccino9, style = "bold" },
|
|
markdownLinkText = { fg = cp.katppuccino9, style = "underline" },
|
|
}
|
|
end
|
|
|
|
return M
|