22 lines
525 B
Lua
22 lines
525 B
Lua
-- -----------------------------------------------------------------------------
|
|
-- --------------------------------- hlchunk -----------------------------------
|
|
-- -----------------------------------------------------------------------------
|
|
return {
|
|
"shellRaining/hlchunk.nvim",
|
|
lazy = false,
|
|
config = function()
|
|
require("hlchunk").setup({
|
|
chunk = {
|
|
style = {
|
|
{ fg = "#90FDA9" },
|
|
},
|
|
enable = true,
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
},
|
|
})
|
|
end,
|
|
}
|
|
|