mirror of
https://github.com/itme-brain/nixos.git
synced 2026-03-23 16:29:42 -04:00
16 lines
328 B
Lua
16 lines
328 B
Lua
return {
|
|
{
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
config = function()
|
|
require("ibl").setup({
|
|
--indent = { char = "│" },
|
|
--indent = { char = "⎸" },
|
|
indent = { char = "┆" },
|
|
scope = {
|
|
show_start = false,
|
|
show_end = false
|
|
},
|
|
})
|
|
end,
|
|
}
|
|
}
|