more colors in indent blank line

This commit is contained in:
Javier Pacheco 2023-09-04 06:24:25 -05:00
parent 0e53460507
commit 389ef62711
2 changed files with 22 additions and 3 deletions

View File

@ -127,8 +127,27 @@ require('lazy').setup({
show_trailing_blankline_indent = false,
},
config = function()
vim.cmd [[highlight IndentBlanklineIndent1 guifg=#E06C75 gui=nocombine]]
vim.cmd [[highlight IndentBlanklineIndent2 guifg=#E5C07B gui=nocombine]]
vim.cmd [[highlight IndentBlanklineIndent3 guifg=#98C379 gui=nocombine]]
vim.cmd [[highlight IndentBlanklineIndent4 guifg=#56B6C2 gui=nocombine]]
vim.cmd [[highlight IndentBlanklineIndent5 guifg=#61AFEF gui=nocombine]]
vim.cmd [[highlight IndentBlanklineIndent6 guifg=#C678DD gui=nocombine]]
vim.opt.list = true
vim.opt.listchars:append "space:⋅"
vim.g.indent_blankline_filetype_exclude = { 'help', 'norg', 'markdown' }
vim.g.indent_blankline_char_list = { '|', '¦', '', '' }
require("indent_blankline").setup {
space_char_blankline = " ",
char_highlight_list = {
"IndentBlanklineIndent1",
"IndentBlanklineIndent2",
"IndentBlanklineIndent3",
"IndentBlanklineIndent4",
"IndentBlanklineIndent5",
"IndentBlanklineIndent6",
},
}
end
},

View File

@ -27,10 +27,10 @@ return {
priority = 1000,
config = function()
require("catppuccin").setup({
flavour = "mocha", -- latte, frappe, macchiato, mocha
background = { -- :h background
flavour = "frappe", -- latte, frappe, macchiato, mocha
background = { -- :h background
light = "latte",
dark = "mocha",
dark = "frappe",
},
transparent_background = true, -- disables setting the background color.
show_end_of_buffer = false, -- shows the '~' characters after the end of buffers