dofiles-win/Documents/PowerShell/completions.ps1

12 lines
520 B
PowerShell
Raw Normal View History

2024-02-02 22:28:57 -04:00
# Scoop search
Invoke-Expression (&scoop-search --hook)
# Scoop completion
Import-Module "$($(Get-Item $(Get-Command scoop.ps1).Path).Directory.Parent.FullName)\modules\scoop-completion"
2024-02-02 09:27:16 -04:00
# Chezmoi
2024-02-02 22:28:57 -04:00
if (Get-Command chezmoi -ErrorAction SilentlyContinue) { chezmoi completion powershell | Out-String | Invoke-Expression }
# Github CLI
2024-02-05 00:24:50 -04:00
Invoke-Expression -Command $(gh completion -s powershell | Out-String)
# gsudo
2024-02-15 16:46:44 -04:00
Import-Module gsudoModule
# zoxide
Invoke-Expression (& { (zoxide init powershell | Out-String) })