2024-03-20 20:34:47 +00:00
|
|
|
#!/bin/pwsh
|
2024-08-07 19:34:40 +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" `
|
2024-08-07 19:34:40 +00:00
|
|
|
-Script $(
|
2024-03-20 20:34:47 +00:00
|
|
|
@(
|
|
|
|
"# Oh My Posh!",
|
|
|
|
$(Get-ScriptInitializer "oh-my-posh init pwsh"),
|
|
|
|
$(Get-ScriptInitializer "oh-my-posh completion powershell")
|
|
|
|
) -join [System.Environment]::NewLine
|
|
|
|
)
|