12 lines
520 B
PowerShell
12 lines
520 B
PowerShell
# Scoop search
|
|
Invoke-Expression (&scoop-search --hook)
|
|
# Scoop completion
|
|
Import-Module "$($(Get-Item $(Get-Command scoop.ps1).Path).Directory.Parent.FullName)\modules\scoop-completion"
|
|
# Chezmoi
|
|
if (Get-Command chezmoi -ErrorAction SilentlyContinue) { chezmoi completion powershell | Out-String | Invoke-Expression }
|
|
# Github CLI
|
|
Invoke-Expression -Command $(gh completion -s powershell | Out-String)
|
|
# gsudo
|
|
Import-Module gsudoModule
|
|
# zoxide
|
|
Invoke-Expression (& { (zoxide init powershell | Out-String) }) |