mirror of
https://github.com/dcarrillo/dotfiles.git
synced 2024-11-12 21:51:13 +00:00
19 lines
384 B
Lua
19 lines
384 B
Lua
|
local status_ok, indent_blankline = pcall(require, "indent_blankline")
|
||
|
if not status_ok then
|
||
|
return
|
||
|
end
|
||
|
|
||
|
indent_blankline.setup({
|
||
|
char = "▏",
|
||
|
show_trailing_blankline_indent = false,
|
||
|
show_first_indent_level = true,
|
||
|
use_treesitter = true,
|
||
|
show_current_context = true,
|
||
|
buftype_exclude = { "terminal", "nofile" },
|
||
|
filetype_exclude = {
|
||
|
"help",
|
||
|
"packer",
|
||
|
"NvimTree",
|
||
|
},
|
||
|
})
|