nvim/lua/plugins/indentscope.lua
2024-06-19 16:44:47 -04:00

20 lines
361 B
Lua

return {
{
"lukas-reineke/indent-blankline.nvim",
opts = {
indent = { char = "" },
},
},
{
"echasnovski/mini.indentscope",
opts = {
symbol = "",
-- options = { try_as_border = true },
draw = {
delay = 0,
animation = require("mini.indentscope").gen_animation.none(),
},
},
},
}