mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 21:58:36 +02:00
16 lines
239 B
Lua
16 lines
239 B
Lua
|
return {
|
||
|
"lukas-reineke/indent-blankline.nvim",
|
||
|
event = { "BufReadPost", "BufNewFile" },
|
||
|
main = "ibl",
|
||
|
opts = {
|
||
|
indent = {
|
||
|
char = "│",
|
||
|
tab_char = "│",
|
||
|
},
|
||
|
scope = {
|
||
|
show_start = false,
|
||
|
show_end = false,
|
||
|
},
|
||
|
},
|
||
|
}
|