Files
PowerShellProfiles/DeveloperProfile
2024-06-08 21:51:18 +02:00

19 lines
539 B
Plaintext

Import-Module -Name Terminal-Icons
oh-my-posh init pwsh --config 'C:\Users\jonas\AppData\Local\Programs\oh-my-posh\themes\M365Princess.omp.json' | Invoke-Expression
#PSReadLine
Import-Module PSReadLine #Needed to run the command below
$versionMinimum = [Version]'7.1.999'
if(($host.Name -eq 'ConsoleHost') -and ($PSVersionTable.PSVersion -ge $versionMinimum))
{
Set-PSReadLineOption -PredictionSource HistoryAndPlugin
}
else
{
Set-PSReadLineOption -PredictionSource History
}
Set-PSReadLineOption -PredictionViewStyle ListView