#!/bin/pwsh
. "$PSScriptRoot/../PowerShell/Profile.ps1";

Add-PowerShellProfileStatement `
    -System `
    -Category "zoxide" `
    -Script $(
        @(
            "# zoxide",
            $(Get-ScriptInitializer "zoxide init powershell | Out-String")
        ) -join [System.Environment]::NewLine
    )