How can change the color of the highlight indentChar related to the cursor? #119
-
First, thanks so much for this amazing theme. I'm trying to change the I tried these settings but no luck: config = function()
require("rose-pine").setup({
disable_background = true,
disable_float_background = false,
highlight_groups = {
IndentBlanklineContextChar = {
fg = "#c5001c",
nocombine = true,
},
},
})
end, Thanks a lot |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
I'm unable to reproduce this. I tried using main & canary branches with both a hex code for return {
{
"lukas-reineke/indent-blankline.nvim",
opts = {
show_current_context = true,
show_current_context_start = true,
},
},
{
"rose-pine/neovim",
name = "rose-pine",
-- I personally use canary but main branch also seemed fine
branch = "canary",
lazy = false,
priority = 1000,
config = function()
require("rose-pine").setup({
disable_italics = true,
disable_float_background = true,
highlight_groups = {
IndentBlanklineContextChar = {
fg = "iris",
-- Tried with & without this, didn't seem to make a difference
-- nocombine = true
},
},
})
vim.cmd.colorscheme("rose-pine")
end,
},
} Maybe try setting colorscheme directly after and let me know if that works for you. Happy to help debug further if not – feel free to link to your config or create an issue with a minimal reproduction :) |
Beta Was this translation helpful? Give feedback.
I'm unable to reproduce this. I tried using main & canary branches with both a hex code for
fg
and a named Rosé Pine colour. Only difference I see between our configs is that I'm settingvim.cmd.colorscheme
directly after running the setup.