mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-22 11:45:09 +02:00
22 lines
418 B
Lua
22 lines
418 B
Lua
return {
|
|
"shellRaining/hlchunk.nvim",
|
|
event = { "BufReadPre", "BufNewFile" },
|
|
config = function()
|
|
require("hlchunk").setup({
|
|
chunk = {
|
|
enable = true,
|
|
-- ...
|
|
},
|
|
indent = {
|
|
enable = true,
|
|
-- ...
|
|
},
|
|
exclude_filetypes = {
|
|
aerial = true,
|
|
dashboard = true,
|
|
alpha = true,
|
|
-- some other filetypes
|
|
},
|
|
})
|
|
end,
|
|
}
|