Created
July 17, 2016 15:01
-
-
Save jtuttas/3bed89a56ff03c1a6a56c05d2d88ec20 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set-psreadlineoption -t parameter darkblue | |
set-psreadlineoption -t operator darkblue | |
set-psreadlineoption -t string darkgreen | |
. (Resolve-Path "$env:LOCALAPPDATA\GitHub\shell.ps1") | |
. $env:github_posh_git\profile.example.ps1 | |
function prompt | |
{ | |
$l=get-location; | |
$f=$l.Path.Substring($l.Path.LastIndexOf("\")) | |
$l.Drive.Name+":\\.."+$f+ "> " | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment