diff --git a/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 b/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 index 67dad5d..7878fb6 100644 --- a/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 +++ b/Documents/PowerShell/Microsoft.PowerShell_profile.ps1 @@ -143,3 +143,8 @@ Function update { if ((Get-Location) -like "*scoop\apps\windows-terminal*") { Set-Location ~ } + +# Use starship prompt if installed +if (Get-Command starship -ErrorAction SilentlyContinue) { + Invoke-Expression (&starship init powershell) +} \ No newline at end of file