fix(indent-blankline): upgrade ibl config to v3

This commit is contained in:
Folke Lemaitre 2023-09-28 07:40:58 +02:00
parent a1ab7c6e32
commit db86635e32
No known key found for this signature in database
GPG key ID: 41F8B1FBACAE2040

View file

@ -168,9 +168,13 @@ return {
"lukas-reineke/indent-blankline.nvim", "lukas-reineke/indent-blankline.nvim",
event = { "BufReadPost", "BufNewFile" }, event = { "BufReadPost", "BufNewFile" },
opts = { opts = {
-- char = "▏", indent = {
char = "", char = "",
filetype_exclude = { highlight = "IndentBlanklineChar",
},
scope = { enabled = false },
exclude = {
filetypes = {
"help", "help",
"alpha", "alpha",
"dashboard", "dashboard",
@ -182,10 +186,10 @@ return {
"toggleterm", "toggleterm",
"lazyterm", "lazyterm",
}, },
show_trailing_blankline_indent = false,
show_current_context = false,
}, },
}, },
main = "ibl",
},
-- Active indent guide and indent text objects. When you're browsing -- Active indent guide and indent text objects. When you're browsing
-- code, this highlights the current level of indentation, and animates -- code, this highlights the current level of indentation, and animates