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
|
|
|
|
|
|
|
|
### Using [fundle](https://github.com/tuvistavie/fundle) (recommended)
|
|
|
|
|
|
|
|
Add
|
|
|
|
|
|
|
|
```
|
|
|
|
fundle plugin 'tuvistavie/fish-ssh-agent'
|
|
|
|
```
|
|
|
|
|
|
|
|
to your `config.fish`, reload your shell and run `fundle install`.
|
|
|
|
|
2017-05-18 01:37:12 +00:00
|
|
|
### Using [Fisherman](https://github.com/fisherman/fisherman)
|
2016-09-27 09:37:27 +00:00
|
|
|
|
|
|
|
fisher install tuvistavie/fish-ssh-agent
|
|
|
|
|
|
|
|
|
2015-11-04 12:34:14 +00:00
|
|
|
### Manually
|
|
|
|
|
2018-09-07 19:38:22 +00:00
|
|
|
Put `functions/*` your `~/.config/fish/functions` directory,
|
2015-11-04 12:34:14 +00:00
|
|
|
and source `init.fish` on startup.
|