feat(update): update

This commit is contained in:
darwincereska
2025-12-01 15:17:21 -05:00
parent fd83a29f1e
commit de8c6245ec
31 changed files with 13 additions and 13 deletions

View File

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