diff options
author | Josh McKinney <joshka@users.noreply.github.com> | 2023-04-11 01:41:00 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-11 10:41:00 +0200 |
commit | b4f9698733d7b29cc495e649e26fd6c3a5dcfcae (patch) | |
tree | 689218388f499103b220207ef96616387adfb0ea /plugins | |
parent | 4586808f86bf3bfdf97685380472b63597ce43c0 (diff) | |
download | zsh-b4f9698733d7b29cc495e649e26fd6c3a5dcfcae.tar.gz zsh-b4f9698733d7b29cc495e649e26fd6c3a5dcfcae.tar.bz2 zsh-b4f9698733d7b29cc495e649e26fd6c3a5dcfcae.zip |
docs(ssh-agent): macOS and p10k advices (#11612)
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/ssh-agent/README.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/plugins/ssh-agent/README.md b/plugins/ssh-agent/README.md index fa6a996d4..8c118e65b 100644 --- a/plugins/ssh-agent/README.md +++ b/plugins/ssh-agent/README.md @@ -99,6 +99,33 @@ ssh-add -K -c -a /run/user/1000/ssh-auth <identities> For valid `ssh-add` arguments run `ssh-add --help` or `man ssh-add`. +### Powerline 10k specific settings + +Powerline10k has an instant prompt setting that doesn't like when this plugin +writes to the console. Consider using the following settings if you're using +p10k (documented above): + +``` +zstyle :omz:plugins:ssh-agent quiet yes +zstyle :omz:plugins:ssh-agent lazy yes +``` + +### macOS specific settings + +macOS supports using passphrases stored in the keychain when adding identities +to the ssh-agent. + +``` +ssh-add --apple-use-keychain ~/.ssh/id_rsa ... +``` + + +This plugin can be configured to use the keychain when loading using the following: + +``` +zstyle :omz:plugins:ssh-agent ssh-add-args --apple-load-keychain +``` + ## Credits Based on code from Joseph M. Reagle: https://www.cygwin.com/ml/cygwin/2001-06/msg00537.html |