Last active
February 24, 2025 11:59
-
-
Save uladz-zubrycki/dde4a600f3c62abd42b27b7f95d20025 to your computer and use it in GitHub Desktop.
~\Documents\PowerShell
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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