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
3 years ago
|
local M = {}
|
||
|
|
||
3 years ago
|
function M.get(cp)
|
||
3 years ago
|
return {
|
||
3 years ago
|
markdownHeadingDelimiter = { fg = cp.katppuccino6, style = "bold" },
|
||
3 years ago
|
markdownCode = { fg = cp.katppuccino2 },
|
||
|
markdownCodeBlock = { fg = cp.katppuccino2 },
|
||
3 years ago
|
markdownH1 = { fg = cp.katppuccino4, style = "bold" },
|
||
3 years ago
|
markdownH2 = { fg = cp.katppuccino9, style = "bold" },
|
||
|
markdownLinkText = { fg = cp.katppuccino9, style = "underline" },
|
||
3 years ago
|
}
|
||
3 years ago
|
end
|
||
|
|
||
|
return M
|