Remove syntax highlight, it's broken!

This commit is contained in:
Hamcha 2020-01-21 15:15:17 +01:00
parent 8f5e9a96f8
commit 4835c57175
Signed by: Hamcha
GPG Key ID: 44AD3571EB09A39E
1 changed files with 0 additions and 13 deletions

View File

@ -12,16 +12,3 @@ Set-PSReadlineKeyHandler -Key Tab -Function MenuComplete
Set-PSReadlineKeyHandler "Shift+SpaceBar" -ScriptBlock {
[Microsoft.Powershell.PSConsoleReadLine]::Insert(' ')
}
# Syntax highlighting!
If ($PSEdition -eq "Core") {
Set-PSReadlineOption -Colors @{
Type = "`e[38;5;85m";
String = "`e[38;5;130m";
Number = "`e[38;5;220m";
Variable = "`e[38;5;191m";
Command = "`e[38;5;117m";
Operator = "`e[38;5;213m";
Parameter = "`e[38;5;239m";
}
}