Update indent-blankline to v3

This commit is contained in:
2023-10-16 22:00:32 +02:00
parent 538d6b4b7e
commit adcb638e4d
2 changed files with 9 additions and 7 deletions
+1
View File
@@ -154,6 +154,7 @@ local plugins = {
},
{
"lukas-reineke/indent-blankline.nvim",
main = "ibl",
config = require("plugins.indent-blankline"),
lazy = true,
event = "VimEnter",
+8 -7
View File
@@ -15,13 +15,14 @@
]]
local function setup()
require("indent_blankline").setup {
use_treesitter = true,
show_first_indent_level = false,
show_trailing_blankline_indent = false,
show_current_context = true,
max_indent_increase = 1,
}
require("ibl").setup({
enabled = true,
scope = {
enabled = false,
show_start = false,
show_end = false,
},
})
end
return setup