2015-11-04 12:34:14 +00:00
|
|
|
# fish-ssh-agent
|
|
|
|
|
|
|
|
Utility functions to start your ssh agent when using fish shell.
|
|
|
|
You will only need to run `ssh-add` and type your password once,
|
|
|
|
after the running ssh_agent should do the work for you.
|
|
|
|
|
|
|
|
## Installation
|
|
|
|
|
2018-10-25 11:44:17 +00:00
|
|
|
### Using [fundle](https://github.com/tuvistavie/fundle)
|
2015-11-04 12:34:14 +00:00
|
|
|
|
|
|
|
Add
|
|
|
|
|
|
|
|
```
|
|
|
|
fundle plugin 'tuvistavie/fish-ssh-agent'
|
|
|
|
```
|
|
|
|
|
|
|
|
to your `config.fish`, reload your shell and run `fundle install`.
|
|
|
|
|
2019-06-17 08:38:03 +00:00
|
|
|
### Using [Fisher](https://github.com/jorgebucaran/fisher)
|
2016-09-27 09:37:27 +00:00
|
|
|
|
2019-06-17 08:38:03 +00:00
|
|
|
```
|
|
|
|
fisher add tuvistavie/fish-ssh-agent
|
|
|
|
```
|
2016-09-27 09:37:27 +00:00
|
|
|
|
2015-11-04 12:34:14 +00:00
|
|
|
### Manually
|
|
|
|
|
2018-09-07 22:31:45 +00:00
|
|
|
Put `functions/*` in your `~/.config/fish/functions` directory,
|
2015-11-04 12:34:14 +00:00
|
|
|
and source `init.fish` on startup.
|