2024-04-04 15:54:18 +00:00
|
|
|
#!/bin/pwsh
|
2024-07-16 12:06:19 +00:00
|
|
|
. "$PSScriptRoot/../../Software/powershell/profile.ps1";
|
2024-04-04 15:54:18 +00:00
|
|
|
|
|
|
|
Add-PowerShellProfileStatement `
|
|
|
|
-System `
|
|
|
|
-Category "zoxide" `
|
|
|
|
-Statement $(
|
|
|
|
@(
|
|
|
|
"# zoxide",
|
|
|
|
$(Get-ScriptInitializer "zoxide init powershell | Out-String")
|
|
|
|
) -join [System.Environment]::NewLine
|
|
|
|
)
|