diff --git a/scripts/Windows/Config/Oh My Posh/Install.ps1 b/scripts/Windows/Config/Oh My Posh/Install.ps1 index 07783c64..9551346c 100644 --- a/scripts/Windows/Config/Oh My Posh/Install.ps1 +++ b/scripts/Windows/Config/Oh My Posh/Install.ps1 @@ -4,4 +4,9 @@ param($context) [Context] $context = $context; Write-Host "Configuring Oh My Posh!"; -$context.AddPowerShellProfileStatement("999_Oh My Posh", 'oh-my-posh init pwsh | Invoke-Expression;'); + +$context.AddPowerShellProfileStatement( + "999_Oh My Posh", + @( + 'oh-my-posh init pwsh | Invoke-Expression;', + "oh-my-posh completion powershell | Invoke-Expression;") -join [System.Environment]::NewLine);