Skip to content

Instantly share code, notes, and snippets.

@gerane
Created July 17, 2016 04:29
Show Gist options
  • Save gerane/29f760407c5fa5023a5db84fcb787c41 to your computer and use it in GitHub Desktop.
Save gerane/29f760407c5fa5023a5db84fcb787c41 to your computer and use it in GitHub Desktop.
function global:prompt
{
$realLASTEXITCODE = $LASTEXITCODE
$Host.UI.RawUI.ForegroundColor = $GitPromptSettings.DefaultForegroundColor
$Host.UI.RawUI.ForegroundColor = "White"
Write-Host $PWD.ProviderPath -NoNewLine -ForegroundColor Green
Write-VcsStatus
$global:LASTEXITCODE = $realLASTEXITCODE
Write-Host "`nI" -NoNewLine -ForegroundColor DarkGray
Write-Host " ❤ " -NoNewLine -ForegroundColor DarkRed
Write-Host "PS>" -NoNewLine -ForegroundColor DarkGray
return " "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment