mirror of
https://github.com/nvim-lua/kickstart.nvim.git
synced 2025-06-23 13:48:35 +02:00
15 lines
239 B
Lua
15 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,
|
|
},
|
|
},
|
|
}
|