fish-ssh-agent/README.md

28 lines
601 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
```
2020-11-11 03:41:31 +00:00
fisher install 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
2020-11-11 03:41:31 +00:00
Copy `functions` and `conf.d` to your `$__fish_config_dir` directory. That's all.