Skip to content

troubleshooting

2CHEVSKII edited this page Jul 10, 2026 · 1 revision

Troubleshooting

Glyphs Render as Boxes or Question Marks

The default glyph set is NerdFonts. Switch to a glyph set that does not require Nerd Fonts:

Set-GlyGlyphSet Unicode
Set-GlyGlyphSet ANSI
Set-GlyGlyphSet ANSICompact
Set-GlyGlyphSet Emoji

Colors Should Be Disabled

Disable colors in configuration:

Set-GlyConfiguration -ShowColors $false

Or force plain text rendering:

$GlyStyleRenderer = 'PlainText'

Remove the override:

Remove-Variable GlyStyleRenderer -Scope Global

Output Remains Customized After Remove-Module

This is expected. PowerShell format data is session-wide.

Use:

Disable-Gly

To fully remove the loaded format data, start a new PowerShell session.

NO_COLOR Disables Styling

If NO_COLOR is set and RespectNoColor is enabled, gly renders plain text:

Remove-Item Env:NO_COLOR

Or ignore NO_COLOR:

Set-GlyConfiguration -RespectNoColor $false

Clone this wiki locally