Go to file
mattmc3 1fbfefaa38 wip 2023-04-27 17:09:07 -04:00
.github Add CI Support (#43) 2022-08-20 21:00:07 -04:00
functions Antidote v1.6.4 (#61) 2022-09-06 18:49:21 -04:00
man Antidote v1.6.4 (#61) 2022-09-06 18:49:21 -04:00
tests Antidote v1.6.4 (#61) 2022-09-06 18:49:21 -04:00
tools wip 2023-04-27 17:09:07 -04:00
.bumpversion.cfg Antidote v1.6.4 (#61) 2022-09-06 18:49:21 -04:00
.editorconfig wip 2023-04-27 17:09:07 -04:00
.gitignore Feature - convert unit tests to ztap3 (#45) 2022-08-21 18:18:11 -04:00
LICENSE Update license 2022-03-07 09:47:44 -05:00
README.md Update README.md 2022-09-12 08:56:09 -04:00
antidote.zsh Antidote v1.6.4 (#61) 2022-09-06 18:49:21 -04:00
awesome_plugins.txt wip 2023-04-27 17:09:07 -04:00
html_elements.txt wip 2023-04-27 17:09:07 -04:00
makefile Antidote v1.6.4 (#61) 2022-09-06 18:49:21 -04:00

README.md

antidote

MIT License version

GetAntidote Logo

Get the cure

Antidote is a feature-complete Zsh implementation of the legacy Antibody plugin manager, which in turn was derived from Antigen. Antidote not only aims to provide continuity for those legacy plugin managers, but also to delight new users with high-performance, easy-to-use Zsh plugin management.

Documentation

The full documentation can be found at https://getantidote.github.io

Installation

Install with git

You can install the latest release of antidote by cloning it with git:

# first, run this from an interactive zsh terminal session:
git clone --depth=1 https://github.com/mattmc3/antidote.git ${ZDOTDIR:-~}/.antidote

Install with a plugin manager

antidote may also be available in your system's plugin manager:

.zshrc

After installation, the simplest way to use antidote is to call the antidote load command from your .zshrc:

# now, simply add these two lines in your ~/.zshrc

# source antidote
source ${ZDOTDIR:-~}/.antidote/antidote.zsh

# initialize plugins statically with ${ZDOTDIR:-~}/.zsh_plugins.txt
antidote load

More details available can be found at https://getantidote.github.io.

Benchmarks

You can see how antidote compares with other setups here.

Plugin authors

If you authored a Zsh plugin, the recommended snippet for antidote is:

antidote install gh_user/gh_repo

If your plugin is hosted somewhere other than GitHub, you can use this:

antidote install https://bitbucket.org/bb_user/bb_repo

Credits

A big thank you to Carlos for all his work on antibody over the years.