yadm/completion/README.md

35 lines
1.0 KiB
Markdown
Raw Normal View History

2017-08-11 13:50:25 -04:00
# Installation
2017-08-11 13:50:25 -04:00
## bash completions
### Prerequisites
2017-08-11 13:50:25 -04:00
**yadm** completion only works if Git completions are also enabled.
2017-08-11 13:50:25 -04:00
### Homebrew
If using `homebrew` to install **yadm**, completions should automatically be handled if you also install `brew install bash-completion`. This might require you to include the main completion script in your own bashrc file like this:
```
[ -f /usr/local/etc/bash_completion ] && source /usr/local/etc/bash_completion
```
2017-08-11 13:50:25 -04:00
### Manual installation
Copy the completion script locally, and add this to you bashrc:
```
[ -f /full/path/to/yadm.bash_completion ] && source /full/path/to/yadm.bash_completion
```
2017-08-11 13:50:25 -04:00
## zsh completions
### Manual installation
2017-08-11 14:09:27 -04:00
Copy the completion script `_yadm` locally, and add the containing folder to `$fpath` in `.zshrc`:
2017-08-11 13:50:25 -04:00
```shell
2017-08-11 14:09:27 -04:00
fpath=(/path/to/folder/containing_yadm $fpath)
2017-08-11 13:50:25 -04:00
```
### Installation using [zplug](https://github.com/b4b4r07/zplug)
2017-08-11 14:09:27 -04:00
Load `_yadm` as a plugin in your `.zshrc`:
2017-08-11 13:50:25 -04:00
```shell
2017-08-11 14:09:27 -04:00
zplug "TheLocehiliosan/yadm", use:"completion/_yadm", as:command, defer:2
2017-08-11 13:50:25 -04:00
```