13 lines
306 B
PowerShell
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
|
||
|
)
|