hlchunk has better perf :3
This commit is contained in:
parent
592e6f021d
commit
ab94f48294
5 changed files with 42 additions and 44 deletions
36
homes/modules/programs/neovim/lua/plugins/hlchunk.lua
Normal file
36
homes/modules/programs/neovim/lua/plugins/hlchunk.lua
Normal file
|
|
@ -0,0 +1,36 @@
|
|||
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,
|
||||
},
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue