11 lines
379 B
PowerShell
11 lines
379 B
PowerShell
# Lädt Funktionen aus der functions.ps1
|
|
Get-ChildItem ~/.winconfig/functions.ps1 | %{. $_ } | out-null
|
|
Get-ChildItem ~/.winconfig/aliases.ps1 | %{. $_ } | out-null
|
|
|
|
|
|
|
|
# Lädt oh-my-posh
|
|
oh-my-posh --init --shell pwsh --config ~/AppData/Local/Programs/oh-my-posh/themes/powerlevel10k_rainbow.omp.json | Invoke-Expression
|
|
# Lädt Terminal-Icons
|
|
Import-Module -Name Terminal-Icons
|