readme filled with description

This commit is contained in:
jonas@geiger-natur.de
2024-06-09 15:00:16 +02:00
parent 226dc8bf97
commit 200746f5b8
5 changed files with 59 additions and 2 deletions

20
DeveloperProfile.ps1 Normal file
View File

@@ -0,0 +1,20 @@
#Nerd-Fonts
Import-Module -Name Terminal-Icons
#Oh My Posh
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