Pretty happy with this minimalist #PowerShell prompt!
function Prompt {
Write-Host ("$($pwd -replace [regex]::Escape($home),'~')>") -NoNewLine -ForegroundColor DarkGray
return " "
}
Replaces the full path of your home folder with ~ so it's nice and short if you're working in your Documents folder or whatnot.
