15 lines
387 B
Lua
15 lines
387 B
Lua
|
|
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,
|
|||
|
|
}
|