Skip to content

Instantly share code, notes, and snippets.

@jakenvac
Created February 3, 2019 18:05
Show Gist options
  • Save jakenvac/c9f40598b2321e2d5f1eaa71d2a6991e to your computer and use it in GitHub Desktop.
Save jakenvac/c9f40598b2321e2d5f1eaa71d2a6991e to your computer and use it in GitHub Desktop.
Custom Powershell Profile for prompt, aliases etc.
# 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