AstroVimConfig/lua/plugins/indent.lua

15 lines
387 B
Lua
Raw Normal View History

2026-04-04 15:48:59 +00:00
return {
"snacks.nvim",
opts = function(_, opts)
opts.indent.chunk.char = {
-- Benutzt die "Heavy" oder "Rounded" Nerd Font Varianten
corner_top = "",
corner_bottom = "",
horizontal = "",
vertical = "", -- Gestrichelte Linie wirkt weniger erdrückend
arrow = "", -- Ein schöner Nerd-Font Chevron
}
return opts
end,
}