fish-ssh-agent/README.md

29 lines
614 B
Markdown
Raw Normal View History

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
2019-06-17 12:09:59 +00:00
### Using [fundle](https://github.com/danhper/fundle)
2015-11-04 12:34:14 +00:00
Add
```
2019-06-17 12:09:59 +00:00
fundle plugin 'danhper/fish-ssh-agent'
2015-11-04 12:34:14 +00:00
```
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
```
2019-06-17 12:09:59 +00:00
fisher add danhper/fish-ssh-agent
2019-06-17 08:38:03 +00:00
```
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.