16 lines
179 B
Lua
16 lines
179 B
Lua
--- @type ibl.config
|
|
M = {
|
|
enabled = true,
|
|
indent = {
|
|
tab_char = "▎",
|
|
},
|
|
scope = {
|
|
enabled = true,
|
|
show_start = false,
|
|
},
|
|
}
|
|
|
|
vim.opt.list = true
|
|
|
|
return M
|