Enable op (1password) completions

This commit is contained in:
Kenneth Benzie 2022-09-09 22:56:14 +01:00
parent 08b543f7fc
commit 56367b82f5

View File

@ -2,6 +2,8 @@
Import-Module "$env:ChocolateyToolsLocation\Cmder\vendor\profile.ps1" Import-Module "$env:ChocolateyToolsLocation\Cmder\vendor\profile.ps1"
# Enable Chocolatey completions. # Enable Chocolatey completions.
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1"
# Enable op completions.
Import-Module "$env:LOCALAPPDATA\1Password\cli\opProfile.psm1"
# Set UTF-8 as the character set for pipes and output objects. # Set UTF-8 as the character set for pipes and output objects.
# https://gist.github.com/xoner/4671514 # https://gist.github.com/xoner/4671514