2017-04-06 12:30:28 +00:00
# Installation
2017-10-24 12:40:04 +00:00
## Bash completions
2020-07-26 17:37:20 +00:00
2017-08-11 17:50:25 +00:00
### Prerequisites
2020-07-26 17:37:20 +00:00
2017-08-11 17:50:25 +00:00
**yadm** completion only works if Git completions are also enabled.
2017-04-06 12:30:28 +00:00
2017-08-11 17:50:25 +00:00
### Homebrew
2020-07-26 17:37:20 +00:00
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:
```bash
2017-04-06 12:30:28 +00:00
[ -f /usr/local/etc/bash_completion ] & & source /usr/local/etc/bash_completion
```
2017-08-11 17:50:25 +00:00
### Manual installation
2020-07-26 17:37:20 +00:00
2017-04-06 12:30:28 +00:00
Copy the completion script locally, and add this to you bashrc:
2020-07-26 17:37:20 +00:00
```bash
2017-04-06 12:30:28 +00:00
[ -f /full/path/to/yadm.bash_completion ] & & source /full/path/to/yadm.bash_completion
```
2017-08-24 21:31:19 +00:00
2017-10-24 12:40:04 +00:00
## Zsh completions
2020-07-26 17:37:20 +00:00
2017-08-24 21:31:19 +00:00
### Homebrew
2020-07-26 17:37:20 +00:00
2017-08-24 21:31:19 +00:00
If using `homebrew` to install **yadm** , completions should handled automatically.
2017-08-11 17:50:25 +00:00
### Manual installation
2020-07-26 17:37:20 +00:00
Add the `completion/zsh` folder to `$fpath` in `.zshrc` :
```zsh
fpath=(/full/path/to/yadm/completion/zsh $fpath)
2017-08-24 21:31:19 +00:00
autoload -U compinit
compinit
2017-08-11 17:50:25 +00:00
```
2017-08-24 21:31:19 +00:00
2017-08-11 17:50:25 +00:00
### Installation using [zplug](https://github.com/b4b4r07/zplug)
2020-07-26 17:37:20 +00:00
2017-08-11 18:09:27 +00:00
Load `_yadm` as a plugin in your `.zshrc` :
2020-07-26 17:37:20 +00:00
```zsh
2017-08-24 21:31:19 +00:00
fpath=("$ZPLUG_HOME/bin" $fpath)
zplug "TheLocehiliosan/yadm", rename-to:_yadm, use:"completion/yadm.zsh_completion", as:command, defer:2
```
2020-06-04 04:31:57 +00:00
## Fish completions
### Manual installation
Copy the completion script `yadm.fish_completion` locally, rename it to `yadm.fish` , and add it to any folder within `$fish_complete_path` . For example, for local installation, you can copy it to `$HOME/.config/fish/completions/` and it will be loaded when `yadm` is invoked.