Files
nvim-config/lua/plugins/indent-blankline.lua
2025-11-19 08:59:51 -05:00

37 lines
985 B
Lua

return {
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
event = { "BufReadPost", "BufNewFile" },
config = function()
require("ibl").setup({
indent = {
char = "",
tab_char = "",
},
scope = {
enabled = true,
show_start = true,
show_end = false,
injected_languages = true,
highlight = { "Function", "Label" },
priority = 500,
},
exclude = {
filetypes = {
"help",
"alpha",
"dashboard",
"neo-tree",
"Trouble",
"trouble",
"lazy",
"mason",
"notify",
"toggleterm",
"lazyterm",
},
},
})
end,
}