summaryrefslogtreecommitdiff
path: root/plugin/ibl.lua
blob: 0d42c04a071d94d19465a844f554dbe16e9add92 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
if vim.g.did_load_ibl_plugin then
	return
end
vim.g.did_load_ibl_plugin = true

require("ibl").setup({
	exclude = {
		filetypes = {
			"help",
			"Trouble",
			"toggleterm",
		},
	},

	indent = {
		char = "│",
		tab_char = "│",
	},

	scope = {
		-- Let mini.nvim handle this
		enabled = false,
	},
})