diff options
author | Marc Cornellà <hello@mcornella.com> | 2021-06-14 10:57:50 +0200 |
---|---|---|
committer | Marc Cornellà <hello@mcornella.com> | 2021-06-14 10:57:50 +0200 |
commit | 3e7998aec33ff7551d06d4510f9e8769aab5db93 (patch) | |
tree | 2015d5a14240415e5cc72272e2bcbb283e94190b /plugins/ssh-agent/README.md | |
parent | 77087aaa8d9ff92ef84ae727411f0eca100ed5de (diff) | |
download | zsh-3e7998aec33ff7551d06d4510f9e8769aab5db93.tar.gz zsh-3e7998aec33ff7551d06d4510f9e8769aab5db93.tar.bz2 zsh-3e7998aec33ff7551d06d4510f9e8769aab5db93.zip |
Revert "ssh-agent: improvements (#6309)"
This reverts commit a206271460ce49e842b1b410c0424b8c9a0a3d14.
Diffstat (limited to 'plugins/ssh-agent/README.md')
-rw-r--r-- | plugins/ssh-agent/README.md | 12 |
1 files changed, 2 insertions, 10 deletions
diff --git a/plugins/ssh-agent/README.md b/plugins/ssh-agent/README.md index aa96f9cc9..8765a9c7e 100644 --- a/plugins/ssh-agent/README.md +++ b/plugins/ssh-agent/README.md @@ -19,17 +19,9 @@ To enable **agent forwarding support** add the following to your zshrc file: zstyle :omz:plugins:ssh-agent agent-forwarding on ``` -To **NOT load any identities on start** use the `lazy` style. -This is particularly usefull when combined with the AddKeysToAgent -(available from OpenSSH 7.2), since it allows to enter the password only -on first use. - -```zsh -zstyle :omz:plugins:ssh-agent lazy yes -``` +---- -To **load multiple identities** use the `identities` style. This have no -effect if `lazy` is enabled. +To **load multiple identities** use the `identities` style, For example: ```zsh zstyle :omz:plugins:ssh-agent identities id_rsa id_rsa2 id_github |