README.md 348 Bytes
Newer Older
one's avatar
one committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
## Prerequisites

- `bash-completion`

## Install

Download completion scripts and put them in the following directory.

```bash
mkdir -p ~/.local/share/bash-completion/completions
```

Enable bash-completion (if not globally enabled):

```bash
# ~/.bashrc
if [ -f /etc/bash_completion ] && ! shopt -oq posix; then
    . /etc/bash_completion
fi
```