Created
February 3, 2019 18:05
-
-
Save jakenvac/c9f40598b2321e2d5f1eaa71d2a6991e to your computer and use it in GitHub Desktop.
Custom Powershell Profile for prompt, aliases etc.
This file contains 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
# Variables | |
$src = "~/source" | |
# Aliases | |
Set-Alias -Name winbash -Value 'C:\Program Files\Git\bin\bash.exe' | |
function reboot { | |
shutdown -r -t 0 | |
} | |
function psh { | |
powershell -NoLogo | |
} | |
function whereis { | |
cmd.exe /c where $args[0] | |
} | |
# Config | |
Import-Module 'C:\tools\poshgit\dahlbyk-posh-git-9bda399\src\posh-git.psd1' | |
Set-PSReadlineOption -BellStyle None | |
# Prompt | |
function prompt { | |
$re = $LASTEXITCODE | |
Write-Host "$ENV:USERNAME" -NoNewline -ForegroundColor Green | |
Write-Host " : " -NoNewline -ForegroundColor White | |
Write-Host $($(Get-Location) -replace ($env:USERPROFILE).Replace('\','\\'), "~") -NoNewline -ForegroundColor Blue | |
$global:LASTEXITCODE = $re | |
Write-VcsStatus | |
Write-Host "" | |
return "> " | |
} | |
# End | |
clear |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment