Skip to content

Instantly share code, notes, and snippets.

@sandorjanssen
Last active December 21, 2015 01:39
Show Gist options
  • Save sandorjanssen/6229450 to your computer and use it in GitHub Desktop.
Save sandorjanssen/6229450 to your computer and use it in GitHub Desktop.
Change the prompt to show only the current folder using a different color (add to $profile using vim $profile)
function prompt {
$p = Split-Path -leaf -path (Get-Location)
Write-Host "$p> " -nonewline -foregroundcolor Green
return ' '
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment