-
|
Specifically in this screenshot from the homepage, I cannot figure out which plugin creates that highlight colouring on the left hand between |
Beta Was this translation helpful? Give feedback.
Answered by
crivotz
Dec 29, 2023
Replies: 1 comment
-
|
Hi, I removed it and went back to indent-blankline (while still considering hlchunk better as an aesthetic effect) anyway the plugin is as follows:
and the configuration code used was this: {
"shellRaining/hlchunk.nvim",
event = { "UIEnter" },
config = function()
require('hlchunk').setup({
chunk = {
chars = {
horizontal_line = "━",
vertical_line = "┃",
left_top = "┏",
left_bottom = "┗",
right_arrow = "━",
},
},
blank = {
enable = false,
},
})
end
} |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
vabatta
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment

Hi, I removed it and went back to indent-blankline (while still considering hlchunk better as an aesthetic effect) anyway the plugin is as follows:
and the configuration code used was this:
{ "shellRaining/hlchunk.nvim", event = { "UIEnter" }, config = function() require('hlchunk').setup({ chunk = { chars = { horizontal_line = "━", vertical_line = "┃", left_top = "┏", left_bottom = "┗", right_arrow = "━", }, }, b…