mirror of
https://github.com/itme-brain/nvim.git
synced 2026-03-23 17:39:43 -04:00
15 lines
297 B
Lua
15 lines
297 B
Lua
return {
|
|
{
|
|
"lukas-reineke/indent-blankline.nvim",
|
|
config = function()
|
|
require("ibl").setup({
|
|
--indent = { char = "│" },
|
|
--indent = { char = "⎸" },
|
|
indent = { char = "┆" },
|
|
scope = {
|
|
enabled = false
|
|
},
|
|
})
|
|
end,
|
|
}
|
|
}
|