antibody
Fast Zsh plugin manager
TLDR
SYNOPSIS
antibody command [options]
DESCRIPTION
antibody is a fast shell plugin manager written in Go. It downloads and loads Zsh plugins from GitHub or other sources, similar to Antigen but with faster performance.Plugins are specified in a text file with one repository per line. Antibody bundles them into shell code that can be sourced in your .zshrc.
antibody is deprecated. No new features or bugfixes are being added. The maintainer recommends antidote as a drop-in replacement.
PARAMETERS
bundle [plugin]
Download and print source commands for pluginsupdate
Update all installed pluginslist
List installed pluginsinit
Output initialization codepurge plugin
Remove a pluginhome
Print antibody home directory
USAGE
Typical setup in .zshrc:
antibody bundle < ~/.zsh_plugins.txt
source ~/.zsh_plugins.sh
INSTALL
CAVEATS
Plugin updates require running antibody update; they don't auto-update. Static loading (generated file) is faster but requires regeneration after changes.
HISTORY
antibody was created by Carlos Alexandro Becker as a faster alternative to Antigen, the popular Zsh plugin manager, using Go for improved performance. The project has since been deprecated and superseded by antidote, a Zsh reimplementation by mattmc3.