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

13 lines
322 B
PowerShell
Raw Normal View History

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
)