···11local ok, indent = pcall(require, "indent_blankline")
22-if not ok then
33- vim.notify("no indent_backline")
44- return
55-end
22+if not ok then return end
6374indent.setup {
55+ -- Hide indent-blankline if tap-width is 2
66+ char = (vim.opt.shiftwidth:get() == 4) and "│" or "",
87 show_current_context = true,
99- -- show_current_context_start = true,
108}