mirror of
https://github.com/pojokcodeid/nvim-lazy.git
synced 2025-07-22 19:54:24 +02:00
23 lines
418 B
Lua
23 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,
|
||
|
}
|