The Zsh completion plugin for Ahoy.
- Clone this repository into the
$ZSH_CUSTOM/plugins
directory (by default~/.oh-my-zsh/custom/plugins
).
git clone https://github.com/ahoy-cli/zsh-ahoy.git ${ZSH_CUSTOM:-~/.oh-my-zsh/custom}/plugins/ahoy
- Add the ahoy zsh plugin to the list of plugins for Oh My Zsh to load, inside
~/.zshrc
:
plugins=(
# Other plugins above...
ahoy
)
- Start a new terminal session.
- Clone this repository somewhere on your machine. This guide will assume
~/.config/zsh-ahoy
git clone https://github.com/ahoy-cli/zsh-ahoy.git ~/.config/zsh-ahoy
- Append
source ~/.config/zsh-ahoy/zsh-ahoy.zsh
to your.zshrc
:
echo "source ~/.config/zsh-ahoy/zsh-ahoy.zsh" >> ~/.zshrc
- Start a new terminal session.
See the zsh-completions
project for more examples, further information about Zsh completions, or to write your own and be inspired to help out with this project!