36 lines
607 B
Lua
36 lines
607 B
Lua
return {
|
|
{
|
|
"hlchunk.nvim",
|
|
enabled = nixCats("ui.hlchunk") or false,
|
|
after = function(plugin)
|
|
require("hlchunk").setup({
|
|
chunk = {
|
|
enable = true,
|
|
use_treesitter = true,
|
|
chars = {
|
|
horizontal_line = "─",
|
|
vertical_line = "│",
|
|
left_top = "╭",
|
|
left_bottom = "╰",
|
|
right_arrow = "─",
|
|
},
|
|
style = {
|
|
"#B0F0FA",
|
|
},
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
use_treesitter = false,
|
|
ahead_lines = 10,
|
|
delay = 25,
|
|
chars = {
|
|
"│",
|
|
},
|
|
style = {
|
|
"#9080FA",
|
|
},
|
|
},
|
|
})
|
|
end,
|
|
},
|
|
}
|