local M = {} function M.config() local status_ok, indent_blankline = pcall(require, 'ibl') if not status_ok then return end indent_blankline.setup({ indent = { char = '▏', }, scope = { enabled = false, } }) end return M