SmiteshP / nvim-navbuddy

A simple popup display that provides breadcrumbs feature using LSP server
Apache License 2.0
762 stars 30 forks source link

fix: replace deprecated(broken) nerd font icon #58

Closed qazxcdswe123 closed 1 year ago

qazxcdswe123 commented 1 year ago

Some codepoints conflict with other fonts (especially CJK fonts). To ensure that the icons remain in the private use area, Nerd Fonts has changed the codepoints of some icons in recent releases, for example, nf-mdi-* icons (including over 2,000 icons) are deprecated since v2.3.3 and will be removed in v3.

See https://github.com/loichyan/nerdfix

This commit replace nf-mdi with nf-md

Before:

image

After:

image

See also: https://github.com/nvim-neo-tree/neo-tree.nvim#configuration-for-nerd-fonts-v3-users

qazxcdswe123 commented 1 year ago

Done