PortValhalla/scripts/Common/Config/zoxide/install.ps1
2024-04-04 17:54:18 +02:00

13 lines
306 B
PowerShell

#!/bin/pwsh
. "$PSScriptRoot/../powershell/lib.ps1";
Add-PowerShellProfileStatement `
-System `
-Category "zoxide" `
-Statement $(
@(
"# zoxide",
$(Get-ScriptInitializer "zoxide init powershell | Out-String")
) -join [System.Environment]::NewLine
)