
Simple and minimalistic windows terminal configuration
its awesome right?
here is how to get them.
- open windows terminal
- type `notepad $PROFILE` and hit enter
- paste this into the newly opened notepad
```
function prompt {
$currentLocation = Get-Location
$homeLocation = (Get-Item -Path ~).FullName
if ($currentLocation.Path -eq $homeLocation) {
Write-Host -NoNewline '~' -ForegroundColor Yellow
' '
}
else {
Write-Host -NoNewline $currentLocation -ForegroundColor Green
' '
}
}
``` - save the notepad
- close the terminal and re open it.
- enjoy