dots/config/nvim/lua/aleidk/plugins/indent-blankline.lua
2023-09-13 22:16:28 -03:00

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,
},
}