local config = { debounce = 25, indent = { char = "│", smart_indent_cap = true, }, scope = { show_start = true, show_end = true, show_exact_scope = false, injected_languages = true, }, } return { { "indent-blankline.nvim", enabled = nixCats("ui.indent-blankline") or false, after = function(plugin) require("ibl").setup(config) vim.api.nvim_create_autocmd("User", { pattern = "RefreshIndentBlankline", callback = function() require("ibl").setup(config) end, }) end, }, }