enc: change indent blank line

This commit is contained in:
Pojok Code 2025-07-20 21:40:36 +07:00
parent aa2f3a49ef
commit c29942d4a7
3 changed files with 25 additions and 3 deletions

View file

@ -1,5 +1,5 @@
return {
"lukas-reineke/indent-blankline.nvim",
--[[ "lukas-reineke/indent-blankline.nvim",
-- version = "3.5.4",
event = { "BufRead", "InsertEnter", "BufNewFile" },
lazy = true,
@ -35,5 +35,5 @@ return {
},
},
},
main = "ibl",
main = "ibl", ]]
}

View file

@ -0,0 +1,22 @@
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,
}