Skip to content

Instantly share code, notes, and snippets.

@frankcalise
Created April 17, 2019 02:14
Show Gist options
  • Save frankcalise/825207344ff142ffc8a2a91279d818b1 to your computer and use it in GitHub Desktop.
Save frankcalise/825207344ff142ffc8a2a91279d818b1 to your computer and use it in GitHub Desktop.
Remove backspace bell and shorten prompt for PowerShell
Set-PSReadlineOption -BellStyle None
function prompt {
$p = Split-Path -leaf -path (Get-Location)
"$p> "
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment