-
Notifications
You must be signed in to change notification settings - Fork 0
configuration
2CHEVSKII edited this page Jul 10, 2026
·
1 revision
gly configuration is stored only in memory for the current PowerShell session.
Get-GlyConfigurationDefault MVP configuration:
@{
Enabled = $true
Theme = 'DefaultDark'
GlyphSet = 'NerdFonts'
ShowGlyphs = $true
ShowColors = $true
SizeFormat = 'Raw'
DateFormat = 'Default'
StyleRenderer = 'Auto'
RespectNoColor = $true
ResetAfterName = $true
}Disable colors:
Set-GlyConfiguration -ShowColors $falseDisable glyphs:
Set-GlyConfiguration -ShowGlyphs $falseUse binary size formatting in renderer commands:
Set-GlyConfiguration -SizeFormat BinaryUse ISO-like dates in renderer commands:
Set-GlyConfiguration -DateFormat IsoStyleRenderer controls how color sequences are produced:
AutoPSStyleAnsiPlainText
Set it through configuration:
Set-GlyConfiguration -StyleRenderer PlainTextOr use the global preference variable:
$GlyStyleRenderer = 'PlainText'$GlyStyleRenderer has priority over the module configuration. Remove it to return to configuration-based behavior:
Remove-Variable GlyStyleRenderer -Scope GlobalIf RespectNoColor is enabled and the NO_COLOR environment variable exists, gly uses plain text rendering.
$env:NO_COLOR = '1'Disable this behavior:
Set-GlyConfiguration -RespectNoColor $false