pojokcodeid.nvim-lazy/lua/pcode/plugins/indentline.lua
2025-07-20 21:40:36 +07:00

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,
}