Adds foldmarkers as signs.
With lazy.nvim:
{
"netmute/foldsigns.nvim"
}
foldsigns is designed to be plug and play. Once installed with lazy.nvim, it usually just works.
The plugin changes some neovim opts, so it looks the best. These are:
foldlevelstart = 99
foldlevel = 99
foldnestmax = 1
foldtext = ""
fillchars = {
fold = " ",
foldopen = "",
foldclose = "",
}
It only does so if you haven't changed the defaults. It will never override your settings.
If something doesn't work, or doesn't look right, it's usually because your config interferes.
Run :checkhealth foldsigns, it tells you what's causing the issue.