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.
22 lines
661 B
Lua
22 lines
661 B
Lua
3 years ago
|
local M = {}
|
||
|
|
||
3 years ago
|
function M.get(cp)
|
||
3 years ago
|
|
||
|
local hi = {
|
||
3 years ago
|
IndentBlanklineChar = { fg = cp.katppuccino12 },
|
||
3 years ago
|
}
|
||
3 years ago
|
|
||
3 years ago
|
if cnf.integrations.indent_blankline.colored_indent_levels then
|
||
3 years ago
|
hi["IndentBlanklineIndent6"] = {blend = "nocombine", fg = cp.katppuccino8}
|
||
3 years ago
|
hi["IndentBlanklineIndent5"] = {blend = "nocombine", fg = cp.katppuccino5}
|
||
3 years ago
|
hi["IndentBlanklineIndent4"] = {blend = "nocombine", fg = cp.katppuccino7}
|
||
3 years ago
|
hi["IndentBlanklineIndent3"] = {blend = "nocombine", fg = cp.katppuccino6}
|
||
3 years ago
|
hi["IndentBlanklineIndent2"] = {blend = "nocombine", fg = cp.katppuccino9}
|
||
3 years ago
|
hi["IndentBlanklineIndent1"] = {blend = "nocombine", fg = cp.katppuccino4}
|
||
3 years ago
|
end
|
||
|
|
||
|
return hi
|
||
3 years ago
|
end
|
||
|
|
||
|
return M
|