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.
23 lines
597 B
Lua
23 lines
597 B
Lua
3 years ago
|
local M = {}
|
||
|
|
||
2 years ago
|
function M.get()
|
||
3 years ago
|
|
||
|
local hi = {
|
||
3 years ago
|
IndentBlanklineChar = { fg = cp.surface0 },
|
||
|
IndentBlanklineContextChar = { fg = cp.text },
|
||
3 years ago
|
}
|
||
3 years ago
|
|
||
3 years ago
|
if cnf.integrations.indent_blankline.colored_indent_levels then
|
||
2 years ago
|
hi["IndentBlanklineIndent6"] = {blend = 0, fg = cp.yellow}
|
||
|
hi["IndentBlanklineIndent5"] = {blend = 0, fg = cp.red}
|
||
|
hi["IndentBlanklineIndent4"] = {blend = 0, fg = cp.teal}
|
||
|
hi["IndentBlanklineIndent3"] = {blend = 0, fg = cp.peach}
|
||
|
hi["IndentBlanklineIndent2"] = {blend = 0, fg = cp.blue}
|
||
|
hi["IndentBlanklineIndent1"] = {blend = 0, fg = cp.pink}
|
||
3 years ago
|
end
|
||
|
|
||
|
return hi
|
||
3 years ago
|
end
|
||
|
|
||
|
return M
|