PortValhalla/scripts/Common/Software/zoxide/install.ps1

13 lines
307 B
PowerShell
Raw Normal View History

2024-07-16 12:28:32 +00:00
#!/bin/pwsh
2024-08-07 19:34:40 +00:00
. "$PSScriptRoot/../PowerShell/Profile.ps1";
2024-07-16 12:28:32 +00:00
Add-PowerShellProfileStatement `
-System `
-Category "zoxide" `
2024-08-07 19:34:40 +00:00
-Script $(
2024-07-16 12:28:32 +00:00
@(
"# zoxide",
$(Get-ScriptInitializer "zoxide init powershell | Out-String")
) -join [System.Environment]::NewLine
)