summaryrefslogtreecommitdiffstats
path: root/after/plugin/indent-blankline.lua
blob: ae187fba16ed3cd72a7f442380e82edc817b149b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
local status_ok, ibl = pcall(require, "ibl")
if not status_ok then
	return
end

ibl.setup {
  indent = {
    char = '▏',
  },
  scope = {
    enabled = true,
    show_start = false,
    show_end = false
  },
}