antibody
Fast Zsh plugin manager
TLDR
Bundle plugins
$ antibody bundle < [plugins.txt]
Bundle a single plugin$ antibody bundle [zsh-users/zsh-autosuggestions]
Update all plugins$ antibody update
List installed plugins$ antibody list
Initialize in zshrc$ source <(antibody init)
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.
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:
$ source <(antibody init)
antibody bundle < ~/.zsh_plugins.txt
Or for faster startup:antibody bundle < ~/.zsh_plugins.txt
$ antibody bundle < ~/.zsh_plugins.txt > ~/.zsh_plugins.sh
source ~/.zsh_plugins.sh
source ~/.zsh_plugins.sh
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 as a faster alternative to Antigen, the popular Zsh plugin manager, using Go for improved performance.
