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", "lukas-reineke/indent-blankline.nvim",
main = "ibl",
config = require("plugins.indent-blankline"), config = require("plugins.indent-blankline"),
lazy = true, lazy = true,
event = "VimEnter", event = "VimEnter",
+8 -7
View File
@@ -15,13 +15,14 @@
]] ]]
local function setup() local function setup()
require("indent_blankline").setup { require("ibl").setup({
use_treesitter = true, enabled = true,
show_first_indent_level = false, scope = {
show_trailing_blankline_indent = false, enabled = false,
show_current_context = true, show_start = false,
max_indent_increase = 1, show_end = false,
} },
})
end end
return setup return setup