trixy/lua/plugins/hlblocks.lua

40 lines
742 B
Lua
Raw Permalink Normal View History

2023-07-31 23:57:35 +02:00
require('hlchunk').setup({
indent = {
chars = { "·", "·", "·", "·", },
--chars = { "│", "¦", "┆", "┊", }, -- more code can be found in https://unicodeplus.com/
2023-07-31 23:57:35 +02:00
style = {
2024-02-04 00:25:41 +01:00
"#888888",
"#666666",
"#444444",
2023-07-31 23:57:35 +02:00
"#333333",
2024-02-04 00:25:41 +01:00
"#333333",
"#333333",
"#333333",
"#333333",
}
2023-07-31 23:57:35 +02:00
},
2023-07-31 23:57:35 +02:00
blank = {
enable = false,
},
chunk = {
chars = {
2024-02-04 00:25:41 +01:00
horizontal_line = "",
vertical_line = "",
left_top = "",
left_bottom = "",
right_arrow = "",
2023-07-31 23:57:35 +02:00
},
2024-02-04 00:25:41 +01:00
style = "#FF7F00",
2023-07-31 23:57:35 +02:00
},
line_num = {
2024-02-04 00:25:41 +01:00
style = "#FFFFFF",
2023-07-31 23:57:35 +02:00
},
})