DNLHC/glance.nvim

File Icons

Closed this issue · 3 comments

File icons seems to be rendering wrong.
image

DNLHC commented

These are not file icons but arrows indicating fold state. If your font doesn't support these characters you can configure fold icons yourself:

glance.setup({
  folds = {
    fold_closed = '>',
    fold_open = 'v',
  },
})
DNLHC commented

I updated fold characters, by default nerdfont icons are used.

I still renders same even after updating, my font is JetBrains Nerd Font Mono. Updated with config you have given me, it works correctly.