36 lines
571 B
Lua
36 lines
571 B
Lua
local M = { "lukas-reineke/indent-blankline.nvim" }
|
|
|
|
M.main = "ibl"
|
|
|
|
M.event = { "BufReadPost", "BufNewFile" }
|
|
|
|
M.dependencies = {
|
|
"nvim-treesitter",
|
|
}
|
|
|
|
M.opts = {
|
|
indent = {
|
|
char = "▏",
|
|
tab_char = "▏",
|
|
},
|
|
scope = {
|
|
char = "▎",
|
|
enabled = true,
|
|
show_start = false,
|
|
show_end = false,
|
|
},
|
|
exclude = {
|
|
filetypes = {
|
|
"help",
|
|
"packer",
|
|
"NvimTree",
|
|
},
|
|
buftypes = {
|
|
"terminal",
|
|
"nofile",
|
|
},
|
|
},
|
|
}
|
|
|
|
return M
|