Skip to content

Instantly share code, notes, and snippets.

@smartpcr
Created December 18, 2025 23:48
Show Gist options
  • Select an option

  • Save smartpcr/e4423a5881790cab1abe7db313e39d1c to your computer and use it in GitHub Desktop.

Select an option

Save smartpcr/e4423a5881790cab1abe7db313e39d1c to your computer and use it in GitHub Desktop.
pwsh profile
Set-PSReadLineOption -EditMode Windows
$themeJsonPath = Join-Path $env:USERPROFILE "blue-owl.omp.json"
if (-not (Test-Path $themeJsonPath)) {
Invoke-WebRequest -Uri 'https://gist.githubusercontent.com/smartpcr/893fefd96babad9ebd5810c71a1571f5/raw/87de6511a90d22dc07417db44b43261507ea36d1/blue-owl.omp.json' -OutFile $themeJsonPath
}
oh-my-posh init pwsh --config $themeJsonPath | Invoke-Expression
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment