Skip to content

Instantly share code, notes, and snippets.

@uladz-zubrycki
Last active February 24, 2025 11:59
Show Gist options
  • Select an option

  • Save uladz-zubrycki/dde4a600f3c62abd42b27b7f95d20025 to your computer and use it in GitHub Desktop.

Select an option

Save uladz-zubrycki/dde4a600f3c62abd42b27b7f95d20025 to your computer and use it in GitHub Desktop.
~\Documents\PowerShell
Set-PSReadLineOption -Colors @{
"Default" = [ConsoleColor]::Black
"Parameter" = [ConsoleColor]::Black
"Type" = [ConsoleColor]::DarkBlue
"Number" = [ConsoleColor]::Magenta
"String" = [ConsoleColor]::Magenta
"Command" = [ConsoleColor]::Magenta
"Comment" = [ConsoleColor]::Yellow
"Variable" = [ConsoleColor]::Green
"Keyword" = [ConsoleColor]::Blue
"Operator" = [ConsoleColor]::Blue
"Member" = [ConsoleColor]::Blue
"Error" = [ConsoleColor]::Red
}
oh-my-posh init pwsh | Invoke-Expression
oh-my-posh init pwsh --config "$env:POSH_THEMES_PATH/pure-custom.omp.json" | Invoke-Expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment