AstroVimConfig/lua/plugins/indent.lua

15 lines
387 B
Lua
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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,
}