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

ibl.setup {
  scope = {
    enabled = false,
  },
}