-
Notifications
You must be signed in to change notification settings - Fork 0
troubleshooting
2CHEVSKII edited this page Jul 10, 2026
·
1 revision
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 EmojiDisable colors in configuration:
Set-GlyConfiguration -ShowColors $falseOr force plain text rendering:
$GlyStyleRenderer = 'PlainText'Remove the override:
Remove-Variable GlyStyleRenderer -Scope GlobalThis is expected. PowerShell format data is session-wide.
Use:
Disable-GlyTo fully remove the loaded format data, start a new PowerShell session.
If NO_COLOR is set and RespectNoColor is enabled, gly renders plain text:
Remove-Item Env:NO_COLOROr ignore NO_COLOR:
Set-GlyConfiguration -RespectNoColor $false