11 lines
277 B
Lua
11 lines
277 B
Lua
local ok, indent_blankline = pcall(require, "indent_blankline")
|
|
if not ok then
|
|
return
|
|
end
|
|
|
|
indent_blankline.setup {
|
|
char = "▏",
|
|
show_current_context = true,
|
|
buftype_exclude = { "help" },
|
|
filetype_exclude = { "alpha", "startify", "packer", "NvimTree" },
|
|
}
|