答案 0 :(得分:8)
语法高亮来自PSReadLine
。要设置Command
令牌的前景色(默认情况下显示为黄色),请使用Set-PSReadLineOption
:
Set-PSReadlineOption -TokenKind Command -ForegroundColor DarkGreen
将该语句放在$profile
中,以便在每次启动PowerShell时都运行它:
'Set-PSReadlineOption -TokenKind Command -ForegroundColor DarkGreen' |Add-Content $Profile
答案 1 :(得分:2)
更新:对于较新的版本,请使用此命令:
Set-PSReadLineOption -Colors @{ Command = 'Red' }