23 lines
425 B
Lua
23 lines
425 B
Lua
return {
|
|
-- Add indentation guides even on blank lines
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
event = { "BufReadPost", "BufNewFile" },
|
|
opts = {
|
|
-- char = "▏",
|
|
char = "│",
|
|
filetype_exclude = {
|
|
"help",
|
|
"alpha",
|
|
"dashboard",
|
|
"neo-tree",
|
|
"Trouble",
|
|
"lazy",
|
|
"mason",
|
|
"notify",
|
|
"toggleterm",
|
|
"lazyterm",
|
|
},
|
|
show_trailing_blankline_indent = true,
|
|
show_current_context = true,
|
|
},
|
|
}
|