summaryrefslogtreecommitdiff
path: root/plugin/ibl.lua
blob: d780c74196b733993817056a8159f0cdcfc7e56e (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
25
26
27
if vim.g.did_load_ibl_plugin then
	return
end
vim.g.did_load_ibl_plugin = true

require("ibl").setup({
	exclude = {
		filetypes = {
			"help",
			"neo-tree",
			"Trouble",
			"lazy",
			"mason",
			"notify",
			"toggleterm",
		},
	},

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

	scope = {
		enabled = false,
	},
})