Shenzhen, 2024

My posh profile

cat $PROFILE

# https://github.com/gluons/powershell-git-aliases
Import-Module git-aliases -DisableNameChecking

Set-Alias -Name c -Value code

# λ "
function prompt {
    $color = Get-Random -Min 1 -Max 16
    $leaf = Split-Path -Path $(Get-Location) -Leaf -Resolve
    Write-Host ("" + $Leaf + " λ ") -NoNewLine `
     -ForegroundColor $Color
    return " "
}