2024-03-20 20:34:47 +00:00
|
|
|
#!/bin/pwsh
|
2024-07-16 12:06:19 +00:00
|
|
|
. "$PSScriptRoot/../../Software/powershell/profile.ps1";
|
2024-03-20 20:34:47 +00:00
|
|
|
|
|
|
|
Add-PowerShellProfileStatement `
|
2024-03-23 03:55:05 +00:00
|
|
|
-System `
|
2024-03-20 20:34:47 +00:00
|
|
|
-Category "oh-my-posh" `
|
|
|
|
-Statement $(
|
|
|
|
@(
|
|
|
|
"# Oh My Posh!",
|
|
|
|
$(Get-ScriptInitializer "oh-my-posh init pwsh"),
|
|
|
|
$(Get-ScriptInitializer "oh-my-posh completion powershell")
|
|
|
|
) -join [System.Environment]::NewLine
|
|
|
|
)
|