Simple and minimalistic windows terminal configuration

its awesome right?

here is how to get them.

  1. open windows terminal
  2. type `notepad $PROFILE` and hit enter
  3. 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
    ' '
    }
    }
    ```
  4. save the notepad
  5. close the terminal and re open it.
  6. enjoy