| .github/ISSUE_TEMPLATE | ||
| doc | ||
| share | ||
| zmodules | ||
| zsdoc | ||
| .gitignore | ||
| .mailmap | ||
| .travis.yml | ||
| _zplugin | ||
| CHANGELOG.md | ||
| DONATIONS.md | ||
| GALLERY.md | ||
| git-process-output.zsh | ||
| LICENSE | ||
| Makefile | ||
| README.md | ||
| zplugin-autoload.zsh | ||
| zplugin-install.zsh | ||
| zplugin-side.zsh | ||
| zplugin.zsh | ||
New: You can request a feature when donating, even fancy or advanced ones get implemented this way. There are
reports about what is being done with the money received.
Table of Contents generated with DocToc
- News
- Getting help
- Zplugin
- Installation
- Usage
- Completions
- Zplugin Module
- Hints and Tips
- Additional resources
- IRC Channel
News
Here are the new features and updates added to zplugin in the last 90 days. To see the full history check the changelog.
-
09-07-2019
- Zplugin can now have its own plugins, called z-plugins! Check out an example but fully functional z-plugin zdharma/z-p-submods and a document that explains on how to implement your own z-plugin (here).
-
08-07-2019
- You can now do
zplugin ice wait ...and it will work aszplugin ice wait'0' ...:) I.e. when there's no value to thewait''ice then a value of0is being substituted.
- You can now do
-
02-07-2019
- Cooperation of Fast-Syntax-Highlighting and Zplugin – a new precise highlighting for Zplugin in F-Sy-H.
-
01-07-2019
atclone'',atpull''&make''get run in the same subshell, thus an e.g. export done inatclone''will be visible during themake.
-
26-06-2019
notify''contents gets evaluated, i.e. can contain active code like$(tail -1 /var/log/messages), etc.
-
23-06-2019
-
New ice mod
subscribe''/on-update-of''which works like thewait''ice-mod, i.e. defers loading of a plugin, but it looks at modification time of the given file(s), and when it changes, it then triggers loading of the plugin/snippet:% zplugin ice on-update-of'{~/files-*,/tmp/files-*}' lucid \ atload"echo I have been loaded" \ notify"Yes that's true :)" % zplugin load zdharma/null % touch ~/files-1 The plugin has been loaded % Yes that's true :)The plugin/snippet will be sourced as many times as the file gets updated.
-
-
22-06-2019
-
New ice mod
reset-promptthat will issuezle .reset-promptafter loading the plugin or snippet, causing the prompt to be recomputed. Useful with themes & turbo-mode. -
New ice-mod
notify''which will cause to display an under-prompt notification when the plugin or snippet gets loaded. E.g.:% zplugin ice wait"0" lucid notify"zdharma/null has been loaded" % zplugin light zdharma/null % zdharma/null has been loadedIn case of problems with the loading a warning message will be output:
% zplugin ice notify atload'return 7' % zplugin light zdharma/null % notify: Plugin not loaded / loaded with problem, the return code: 7Refer to Ice Modifiers section for a complete description.
-
-
29-05-2019
-
Turbo-Mode, i.e. the
wait''ice-mode now supports a suffix – the lettera,borc. The meaning is illustrated by the following example:zplugin ice wait"0b" as"command" pick"wd.sh" atinit"echo Firing 1" lucid zplugin light mfaerevaag/wd zplugin ice wait"0a" as"command" pick"wd.sh" atinit"echo Firing 2" lucid zplugin light mfaerevaag/wd # The output Firing 2 Firing 1As it can be seen, the second plugin has been loaded first. That's because there are now three sub-slots (the
a,bandc) in which the plugin/snippet loadings can be put into. Plugins from the same time-slot with suffixawill be loaded before plugins with suffixb, etc.In other words, instead of
wait'1'you can enterwait'1a',wait'1b'andwait'1c'– to this way impose order on the loadings regardless of the order ofzplugincommands.
-
-
26-05-2019
- Turbo-Mode now divides the scheduled events (i.e. loadings of plugins or snippets) into packs of 5. In other words, after loading each series of 5 plugins or snippets the prompt is activated, i.e. it is feed an amount of CPU time. This will help to deliver the promise of background loading without interferences visible to the user. If you have some two slow-loading plugins and/or snippets, you can put them into some separate blocks of 5 events.
-
18-05-2019
- New ice-mod
nocd– it prevents changing current directory into the plugin's directory before evaluatingatinit'',atload''etc. ice-mods.
- New ice-mod
Getting help
If you need help you can do the following:
-
Ask in our subreddit r/zplugin.
Zplugin
Zplugin is an elastic and fast Zshell plugin manager that will allow you to install everything from Github and other sites.
Zplugin is currently the only plugin manager out there that has Turbo Mode which yields 39-50% faster Zsh startup!
Zplugin gives reports from plugin load describing what aliases, functions,
bindkeys, Zle widgets, zstyles, completions, variables, PATH and FPATH
elements a plugin has set up.
Supported is unloading of plugin and ability to list, (un)install and selectively disable, enable plugin's completions.
The system does not use $FPATH, loading multiple plugins doesn't clutter
$FPATH with the same number of entries (e.g. 10). Code is immune to
KSH_ARRAYS. Completion management functionality is provided to allow user
to call compinit only once in .zshrc.
Installation
The easiest way to install Zplugin is to execute:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/zdharma/zplugin/master/doc/install.sh)"
This will install Zplugin in ~/.zplugin/bin. .zshrc will be updated with three lines of code that will be added to the bottom.
If you're interested in more ways to install Zplugin check INSTALLATION.
Usage
Introduction
You can read the introduction to Zplugin in INTRODUCTION. It explains basic usage and some of the more unique features of Zplugin such as the Turbo Mode.
Example Usage
After installing Zplugin you can start adding some actions (load some plugins) to ~/.zshrc, at bottom. Some examples:
# Two regular plugins loaded without tracking.
zplugin light zsh-users/zsh-autosuggestions
zplugin light zdharma/fast-syntax-highlighting
# Plugin history-search-multi-word loaded with tracking.
zplugin load zdharma/history-search-multi-word
# Binary release in archive, from Github-releases page; after automatic unpacking it provides program "fzf".
zplugin ice from"gh-r" as"program"; zplugin load junegunn/fzf-bin
# One other binary release, it needs renaming from `docker-compose-Linux-x86_64`.
# This is done by ice-mod `mv'{from} -> {to}'. There are multiple packages per
# single version, for OS X, Linux and Windows – so ice-mod `bpick' is used to
# select Linux package – in this case this is actually not needed, Zplugin will
# grep operating system name and architecture automatically when there's no `bpick'.
zplugin ice from"gh-r" as"program" mv"docker* -> docker-compose" bpick"*linux*"; zplugin load docker/compose
# Vim repository on Github – a typical source code that needs compilation – Zplugin
# can manage it for you if you like, run `./configure` and other `make`, etc. stuff.
# Ice-mod `pick` selects a binary program to add to $PATH. You could also install the
# package under the path $ZPFX with make"install PREFIX=$ZPFX"
zplugin ice as"program" atclone"rm -f src/auto/config.cache; ./configure" atpull"%atclone" make pick"src/vim"
zplugin light vim/vim
# Scripts that are built at install (there's single default make target, "install",
# and it constructs scripts by `cat'ing a few files). The make"" ice could also be:
# `make"install PREFIX=$ZPFX"`, if "install" wouldn't be the only, default target.
zplugin ice as"program" pick"$ZPFX/bin/git-*" make"PREFIX=$ZPFX"
zplugin light tj/git-extras
# Load the pure theme, with zsh-async library that's bundled with it.
zplugin ice pick"async.zsh" src"pure.zsh"; zplugin light sindresorhus/pure
# For GNU ls (the binaries can be gls, gdircolors, e.g. on OS X when installing the
# coreutils package from Homebrew or using https://github.com/ogham/exa)
# You can see an extended explanation in the Wiki section "LS_COLORS-explanation".
zplugin ice atclone"dircolors -b LS_COLORS > c.zsh" atpull'%atclone' pick"c.zsh" nocompile'!'
zplugin light trapd00r/LS_COLORS
# make'!...' -> run make before atclone & atpull
# You can see an extended explanation in the Wiki section "Direnv-explanation".
zplugin ice as"program" make'!' atclone'./direnv hook zsh > zhook.zsh' atpull'%atclone' src"zhook.zsh"
zplugin light direnv/direnv
# Handle completions without loading any plugin, see "clist" command.
# This one is to be ran just once, in interactive session.
zplugin creinstall %HOME/my_completions
If you're interested in more examples then check out this
repository where users have uploaded their
~/.zshrc and Zplugin configurations. Feel free to
submit
your ~/.zshrc there if it contains Zplugin commands.
You can also check out the Gallery of Zplugin Invocations for some additional examples.
Ice Modifiers
Following ice modifiers are to be passed to zplugin ice ... to obtain described effects.
The word ice means something that's added (like ice to a drink) – and in Zplugin it
means adding modifier to a next zplugin command, and also something that's temporary
because it melts – and this means that the modification will last only for a single
next zplugin command.
Some Ice-modifiers are highlighted and clicking on them will take you to the appropriate wiki page for an extended explanation.
| Modifier |
Description |
Works with plugins | Works with snippets |
|---|---|---|---|
proto |
Change protocol to git,ftp,ftps,ssh, rsync, etc. Default is https. |
✔️ | ✖️ |
from |
Clone plugin from given site. Supported are from"github" (default), ..."github-rel", ..."gitlab", ..."bitbucket", ..."notabug" (short names: gh, gh-r, gl, bb, nb). Can also be a full domain name (e.g. for Github enterprise). |
✔️ | ✖️ |
as |
Can be as"program" (also alias as"command"), and will cause to add script/program to $PATH instead of sourcing (see pick). Can also be as"completion". |
✔️ | ✔️ |
id-as |
Nickname a plugin or snippet, to e.g. create a short handler for long-url snippet. | ✔️ | ✔️ |
ver |
Used with from"gh-r" (i.e. downloading a binary release, e.g. for use with as"program") – selects which version to download. Default is latest, can also be explicitly ver"latest". Works also with regular plugins, checkouts e.g. ver"abranch", i.e. a specific version. |
✔️ | ✔️ |
pick |
Select the file to source, or the file to set as command (when using snippet --command or ICE as"program"), e.g. zplugin ice pick"*.plugin.zsh". |
✔️ | ✔️ |
bpick |
Used to select which release from Github Releases to download, e.g. zplg ice from"gh-r" as"program" bpick"*Darwin*"; zplg load docker/compose |
✔️ | ✖️ |
depth |
Pass --depth to git, i.e. limit how much of history to download. |
✔️ | ✖️ |
cloneopts |
Pass the contents of cloneopts to git clone. Defaults to --recursive i.e. Change cloning options. |
✔️ | ✖️ |
bindmap |
To hold ;-separated strings like Key(s)A -> Key(s)B, e.g. ^R -> ^T; ^A -> ^B. In general, bindmap''changes bindings (done with the bindkey builtin) the plugin does. The example would cause the plugin to map Ctrl-T instead of Ctrl-R, and Ctrl-B instead of Ctrl-A. |
✔️ | ✖️ |
trackbinds |
Shadow but only bindkey calls even with zplugin light ..., i.e. even with tracking disabled (fast loading), to allow bindmap to remap the key-binds. The same effect has zplugin light -b ..., i.e. additional -b option to the light-subcommand. |
✔️ | ✖️ |
if |
Load plugin or snippet only when given condition is fulfilled, for example: zplugin ice if'[[ -n "$commands[otool]" ]]'; zplugin load .... |
✔️ | ✔️ |
has |
Load plugin or snippet only when given command is available (in $PATH), e.g. zplugin ice has'git' ... |
✔️ | ✔️ |
blockf |
Disallow plugin to modify fpath. Useful when a plugin wants to provide completions in traditional way. Zplugin can manage completions and plugin can be blocked from exposing them. |
✔️ | ✔️ |
silent |
Mute plugin's or snippet's stderr & stdout. Also skip Loaded ... message under prompt for wait, etc. loaded plugins, and completion-installation messages. |
✔️ | ✔️ |
lucid |
Skip Loaded ... message under prompt for wait, etc. loaded plugins (a subset of silent). |
✔️ | ✔️ |
notify |
Output given message under-prompt after successfully loading a plugin/snippet. In case of problems with the loading, output a warning message and the return code. If starts with ! it will then always output the given message. Hint: if the message is empty, then it will just notify about problems. |
✔️ | ✔️ |
reset-prompt |
Reset the prompt after loading the plugin/snippet (by issuing zle .reset-prompt). Note: normally it's sufficient to precede the value of wait'' ice with !. |
✔️ | ✔️ |
mv |
Move file after cloning or after update (then, only if new commits were downloaded). Example: mv "fzf-* -> fzf". It uses -> as separator for old and new file names. Works also with snippets. |
✔️ | ✔️ |
cp |
Copy file after cloning or after update (then, only if new commits were downloaded). Example: cp "docker-c* -> dcompose". Ran after mv. Works also with snippets. |
✔️ | ✔️ |
atinit |
Run command after directory setup (cloning, checking it, etc.) of plugin/snippet but before loading. | ✔️ | ✔️ |
atclone |
Run command after cloning, within plugin's directory, e.g. zplugin ice atclone"echo Cloned". Ran also after downloading snippet. |
✔️ | ✔️ |
atload |
Run command after loading, within plugin's directory. Can be also used with snippets. Passed code can be preceded with !, it will then be tracked (if using load, not light). |
✔️ | ✔️ |
atpull |
Run command after updating (only if new commits are waiting for download), within plugin's directory. If starts with "!" then command will be ran before mv & cp ices and before git pull or svn update. Otherwise it is ran after them. Can be atpull'%atclone', to repeat atclone Ice-mod. |
✔️ | ✔️ |
run-atpull |
Always run the atpull hook (when updating), not only when there are new commits to be downloaded. | ✔️ | ✔️ |
cloneonly |
Don't load the plugin / snippet, only download it | ✔️ | ✔️ |
nocd |
Don't switch the current directory into the plugin's directory when evaluating the above ice-mods atinit'',atload'', etc. |
✔️ | ✔️ |
svn |
Use Subversion for downloading snippet. Github supports SVN protocol, this allows to clone subdirectories as snippets, e.g. zplugin ice svn; zplugin snippet OMZ::plugins/git. Other ice pick can be used to select file to source (default are: *.plugin.zsh, init.zsh, *.zsh-theme). |
✖️ | ✔️ |
make |
Run make command after cloning/updating and executing mv, cp, atpull, atclone Ice mods. Can obtain argument, e.g. make"install PREFIX=/opt". If the value starts with ! then make is ran before atclone/atpull, e.g. make'!'. |
✔️ | ✔️ |
src |
Specify additional file to source after sourcing main file or after setting up command (via as"program"). |
✔️ | ✔️ |
wait |
Postpone loading a plugin or snippet. For wait'1', loading is done 1 second after prompt. For wait'[[ ... ]]', wait'(( ... ))', loading is done when given condition is meet. For wait'!...', prompt is reset after load. Zsh can start 39% faster thanks to postponed loading (result obtained in test with 11 plugins). Fact: when wait is used without value, it works as wait'0'. |
✔️ | ✔️ |
load |
A condition to check which should cause plugin to load. It will load once, the condition can be still true, but will not trigger second load (unless plugin is unloaded earlier, see unload below). E.g.: load'[[ $PWD = */github* ]]'. |
✔️ | ✔️ |
unload |
A condition to check causing plugin to unload. It will unload once, then only if loaded again. E.g.: unload'[[ $PWD != */github* ]]'. |
✔️ | ✔️ |
subscribe / on-update-of |
Postpone loading of a plugin or snippet until the given file(s) get updated, e.g. subscribe'{~/files-*,/tmp/files-*}' |
✔️ | ✔️ |
service |
Make following plugin or snippet a service, which will be ran in background, and only in single Zshell instance. See zservices org. | ✔️ | ✔️ |
compile |
Pattern (+ possible {...} expansion, like {a/*,b*}) to select additional files to compile, e.g. `compile"(pure\ |
✔️ | ✔️ |
nocompletions |
Don't detect, install and manage completions for this plugin. Completions can be installed later with zplugin creinstall {plugin-spec}. |
✔️ | ✔️ |
nocompile |
Don't try to compile pick-pointed files. If passed the exclamation mark (i.e. nocompile'!'), then do compile, but after make'' and atclone'' (useful if Makefile installs some scripts, to point pick'' at location of installation). |
✔️ | ✔️ |
multisrc |
Allows to specify multiple files for sourcing, enumerated with spaces as the separator (e.g. multisrc'misc.zsh grep.zsh') and also using brace-expansion syntax (e.g. multisrc'{misc,grep}.zsh'). |
✔️ | ✔️ |
Order of execution of related Ice-mods: atinit -> atpull! -> make'!!' -> mv -> cp -> make! -> atclone/atpull -> make -> (plugin script loading) -> src -> multisrc -> atload.
Zplugin commands
% zpl help
Usage:
—— -h|--help|help – usage information
—— man – manual
—— self-update – updates and compiles Zplugin
—— times [-s] – statistics on plugin load times, sorted in order of loading; -s – use seconds instead of milliseconds
—— zstatus – overall Zplugin status
—— load plg-spec – load plugin, can also receive absolute local path
—— light [-b] plg-spec – light plugin load, without reporting/tracking (-b – do track but bindkey-calls only)
—— unload plg-spec – unload plugin loaded with `zplugin load ...', -q – quiet
—— snippet [-f] {url} – source local or remote file (by direct URL), -f: force – don't use cache
—— ls – list snippets in formatted and colorized manner
—— ice <ice specification> – add ICE to next command, argument is e.g. from"gitlab"
—— update [-q] plg-spec|URL – Git update plugin or snippet (or all plugins and snippets if ——all passed); besides -q accepts also ——quiet, and also -r/--reset – this option causes to run git reset --hard / svn revert before pulling changes
—— status plg-spec|URL – Git status for plugin or svn status for snippet (or for all those if ——all passed)
—— report plg-spec – show plugin's report (or all plugins' if ——all passed)
—— delete plg-spec|URL – remove plugin or snippet from disk (good to forget wrongly passed ice-mods)
—— loaded|list [keyword] – show what plugins are loaded (filter with 'keyword')
—— cd plg-spec – cd into plugin's directory; also support snippets, if feed with URL
—— create plg-spec – create plugin (also together with Github repository)
—— edit plg-spec – edit plugin's file with $EDITOR
—— glance plg-spec – look at plugin's source (pygmentize, {,source-}highlight)
—— stress plg-spec – test plugin for compatibility with set of options
—— changes plg-spec – view plugin's git log
—— recently [time-spec] – show plugins that changed recently, argument is e.g. 1 month 2 days
—— clist|completions – list completions in use
—— cdisable cname – disable completion `cname'
—— cenable cname – enable completion `cname'
—— creinstall plg-spec – install completions for plugin, can also receive absolute local path; -q – quiet
—— cuninstall plg-spec – uninstall completions for plugin
—— csearch – search for available completions from any plugin
—— compinit – refresh installed completions
—— dtrace|dstart – start tracking what's going on in session
—— dstop – stop tracking what's going on in session
—— dunload – revert changes recorded between dstart and dstop
—— dreport – report what was going on in session
—— dclear – clear report of what was going on in session
—— compile plg-spec – compile plugin (or all plugins if ——all passed)
—— uncompile plg-spec – remove compiled version of plugin (or of all plugins if ——all passed)
—— compiled – list plugins that are compiled
—— cdlist – show compdef replay list
—— cdreplay [-q] – replay compdefs (to be done after compinit), -q – quiet
—— cdclear [-q] – clear compdef replay list, -q – quiet
—— srv {service-id} [cmd] – control a service, command can be: stop,start,restart,next,quit; `next' moves the service to another Zshell
—— recall plg-spec|URL – fetch saved ice modifiers and construct `zplugin ice ...' command
—— env-whitelist [-v|-h] {env..} – allows to specify names (also patterns) of variables left unchanged during an unload. -v – verbose
—— bindkeys – lists bindkeys set up by each plugin
—— module – manage binary Zsh module shipped with Zplugin, see `zplugin module help'
Available ice-modifiers:
svn proto from teleid bindmap cloneopts id-as depth if wait load
unload blockf on-update-of subscribe pick bpick src as ver silent
lucid notify mv cp atinit atclone atload atpull nocd run-atpull has
cloneonly make service trackbinds multisrc compile nocompile
nocompletions reset-prompt
Updating Zplugin and plugins
To update Zplugin issue zplugin self-update in the command line.
To update all plugins and snippets, issue zplugin update. If you wish to update only
a single plugin/snippet instead issue zplugin update NAME_OF_PLUGIN. A list of
commits will be shown:
Some plugins require performing an action each time they're updated. One way you can do
this is by using the atpull ice modifier. For example, writing zplugin ice atpull'./configure' before loading a plugin will execute ./configure after a successful update. Refer to Ice Modifiers for more information.
Using Oh-My-Zsh Themes
To use themes created for Oh-My-Zsh you might want to first source the git library there:
zplugin snippet http://github.com/robbyrussell/oh-my-zsh/raw/master/lib/git.zsh
# Or using OMZ:: shorthand:
zplugin snippet OMZ::lib/git.zsh
If the library will not be loaded, then similar to following errors will be appearing:
........:1: command not found: git_prompt_status
........:1: command not found: git_prompt_short_sha
Then you can use the themes as snippets (zplugin snippet {file path or Github URL}).
Some themes require not only Oh-My-Zsh's Git library, but also Git plugin (error
about current_branch function can be appearing). Load this Git-plugin as single-file
snippet directly from OMZ:
zplugin snippet OMZ::plugins/git/git.plugin.zsh
Such lines should be added to .zshrc. Snippets are cached locally, use -f option to download
a fresh version of a snippet, or zplugin update {URL}. Can also use zplugin update --all to
update all snippets (and plugins).
Most themes require promptsubst option (setopt promptsubst in zshrc), if it isn't set, then
prompt will appear as something like: ... $(build_prompt) ....
You might want to supress completions provided by the git plugin by issuing zplugin cdclear -q
(-q is for quiet) – see below Ignoring Compdefs.
To summarize:
# Load OMZ Git library
zplugin snippet OMZ::lib/git.zsh
# Load Git plugin from OMZ
zplugin snippet OMZ::plugins/git/git.plugin.zsh
zplugin cdclear -q # <- forget completions provided up to this moment
setopt promptsubst
# Load theme from OMZ
zplugin snippet OMZ::themes/dstufft.zsh-theme
# Load normal Github plugin with theme depending on OMZ Git library
zplugin light NicoSantangelo/Alpharized
Completions
Calling compinit Without Turbo Mode
With no turbo mode in use, compinit can be called normally, i.e.: as autoload compinit; compinit. This should be done after loading of all plugins and before possibly calling
zplugin cdreplay. Also, plugins aren't allowed to simply run compdefs. You can
decide whether to run compdefs by issuing zplugin cdreplay (reads: compdef-replay).
To summarize:
source ~/.zplugin/bin/zplugin.zsh
zplugin load "some/plugin"
...
compdef _gnu_generic fd # this will be intercepted by Zplugin, because as the compinit
# isn't yet loaded, thus there's no such function `compdef'; yet
# Zplugin provides its own `compdef' function which saves the
# completion-definition for later possible re-run with `zplugin
# cdreplay` or `zpcdreplay` (the second one can be used in hooks
# like atload'', atinit'', etc.)
...
zplugin load "other/plugin"
autoload -Uz compinit
compinit
zplugin cdreplay -q # -q is for quiet; actually run all the `compdef's saved before
#`compinit` call (`compinit' declares the `compdef' function, so
# it cannot be used until `compinit` is ran; Zplugin solves this
# via intercepting the `compdef'-calls and storing them for later
# use with `zplugin cdreplay')
This allows to call compinit once.
Performance gains are huge, example shell startup time with double compinit: 0.980 sec, with
cdreplay and single compinit: 0.156 sec.
Calling compinit With Turbo Mode
If you load completions using wait'' turbo-mode then you can add
atinit'zpcompinit' to syntax-highlighting plugin (which should be the last
one loaded, as their (2 projects, z-sy-h &
f-sy-h)
documentation state), or atload'zpcompinit' to last
completion-related plugin. zpcompinit is a function that just runs autoload compinit; compinit, created for convenience. There's also zpcdreplay which
will replay any caught compdefs so you can also do: atinit'zpcompinit; zpcdreplay', etc. Basically, the whole topic is the same as normal compinit call,
but it is done in atinit or atload hook of the last related plugin with use of the
helper functions (zpcompinit,zpcdreplay & zpcdclear – see below for explanation
of the last one).
Ignoring Compdefs
If you want to ignore compdefs provided by some plugins or snippets, place their load commands
before commands loading other plugins or snippets, and issue zplugin cdclear (or
zpcdclear, designed to be used in hooks like atload''):
source ~/.zplugin/bin/zplugin.zsh
zplugin snippet OMZ::plugins/git/git.plugin.zsh
zplugin cdclear -q # <- forget completions provided by Git plugin
zplugin load "some/plugin"
...
zplugin load "other/plugin"
autoload -Uz compinit
compinit
zplugin cdreplay -q # <- execute compdefs provided by rest of plugins
zplugin cdlist # look at gathered compdefs
Disabling system-wide compinit call (Ubuntu)
On Ubuntu users might get surprised that e.g. their completions work while they didn't
call compinit in their .zshrc. That's because the function is being called in
/etc/zshrc. To disable this call – what is needed to avoid the slowdown and if user
loads any completion-equipped plugins, i.e. almost on 100% – add the following lines to
~/.zshenv:
# Skip the not really helping Ubuntu global compinit
skip_global_compinit=1
Zplugin Module
Installation
Without Zplugin
To install just the binary Zplugin module standalone (Zplugin is not needed, the module can be used with any other plugin manager), execute:
sh -c "$(curl -fsSL https://raw.githubusercontent.com/zdharma/zplugin/master/doc/mod-install.sh)"
This script will display what to add to ~/.zshrc (2 lines) and show usage instructions.
With Zplugin
Zplugin users can build the module by issuing following command instead of running above mod-install.sh script
(the script is for e.g. zgen users or users of any other plugin manager):
zplugin module build
This command will compile the module and display instructions on what to add to ~/.zshrc.
Guaranteed Compilation Of All Scripts / Plugins
The module is a binary Zsh module (think about zmodload Zsh command, it's that topic) which transparently and
automatically compiles sourced scripts. Many plugin managers do not offer compilation of plugins, the module is
a solution to this. Even if a plugin manager does compile plugin's main script (like Zplugin does), the script can
source smaller helper scripts or dependency libraries (for example, the prompt geometry-zsh/geometry does that)
and there are very few solutions to that, which are demanding (e.g. specifying all helper files in plugin load
command and tracking updates to the plugin – in Zplugin case: by using compile ice-mod).
Measuring Time Of sources
Besides the compilation-feature, the module also measures duration of each script sourcing. Issue zpmod source-study after loading the module at top of ~/.zshrc to see a list of all sourced files with the time the
sourcing took in milliseconds on the left. This feature allows to profile the shell startup. Also, no script can
pass-through that check and you will obtain a complete list of all loaded scripts, like if Zshell itself was
tracking this. The list can be surprising.
Debugging
To enable debug messages from the module set:
typeset -g ZPLG_MOD_DEBUG=1
Hints and Tips
Customizing Paths & Other
Following variables can be set to custom values, before sourcing Zplugin. The
previous global variables like $ZPLG_HOME have been removed to not pollute
the namespace – there's single $ZPLGM ("ZPLUGIN MAP") hash instead of 8 string
variables. Please update your dotfiles.
declare -A ZPLGM # initial Zplugin's hash definition, if configuring before loading Zplugin, and then:
| Hash Field | Description |
|---|---|
| ZPLGM[BIN_DIR] | Where Zplugin code resides, e.g.: "~/.zplugin/bin" |
| ZPLGM[HOME_DIR] | Where Zplugin should create all working directories, e.g.: "~/.zplugin" |
| ZPLGM[PLUGINS_DIR] | Override single working directory – for plugins, e.g. "/opt/zsh/zplugin/plugins" |
| ZPLGM[COMPLETIONS_DIR] | As above, but for completion files, e.g. "/opt/zsh/zplugin/root_completions" |
| ZPLGM[SNIPPETS_DIR] | As above, but for snippets |
| ZPLGM[ZCOMPDUMP_PATH] | Path to .zcompdump file, with the file included (i.e. it's name can be different) |
| ZPLGM[COMPINIT_OPTS] | Options for compinit call (i.e. done by zpcompinit), use to pass -C to speed up loading |
| ZPLGM[MUTE_WARNINGS] | If set to 1, then mutes some of the Zplugin warnings, specifically the plugin already registered warning |
There is also $ZPFX, set by default to ~/.zplugin/polaris – a directory
where software with Makefile, etc. can be pointed to, by e.g. atclone'./configure --prefix=$ZPFX'.
Non-Github (Local) Plugins
Use create subcommand with user name _local (the default) to create plugin's
skeleton in $ZPLGM[PLUGINS_DIR]. It will be not connected with Github repository
(because of user name being _local). To enter the plugin's directory use cd command
with just plugin's name (without _local, it's optional).
If user name will not be _local, then Zplugin will create repository also on Github
and setup correct repository origin.
Extending Git
There are several projects that provide git extensions. Installing them with Zplugin has many benefits:
- all files are under
$HOME– no administrator rights needed, - declarative setup (like Chef or Puppet) – copying
.zshrcto different account brings also git-related setup, - easy update by e.g.
zplugin update --all.
Below is a configuration that adds multiple git extensions, loaded in Turbo Mode, two seconds after prompt:
zplugin ice wait"2" lucid as"program" pick"bin/git-dsf"
zplugin light zdharma/zsh-diff-so-fancy
zplugin ice wait"2" lucid as"program" pick"$ZPFX/bin/git-now" make"prefix=$ZPFX install"
zplugin light iwata/git-now
zplugin ice wait"2" lucid as"program" pick"$ZPFX/bin/git-alias" make"PREFIX=$ZPFX" nocompile
zplugin light tj/git-extras
zplugin ice wait"2" lucid as"program" atclone'perl Makefile.PL PREFIX=$ZPFX' atpull'%atclone' \
make'install' pick"$ZPFX/bin/git-cal"
zplugin light k4rthik/git-cal
Target directory for installed files is $ZPFX (~/.zplugin/polaris by default).
Preinstall Plugins (burst Scheduler Invocation)
If you create a Docker image that uses Zplugin, or want to install turbo-loaded plugins before the shell starts interactively, you can invoke the zplugin-scheduler function in such a way, that it:
- installs plugins without waiting for the prompt (i.e. it's script friendly),
- installs all plugins instantly, without respecting the
wait''argument.
To accomplish this, use burst argument and call -zplg-scheduler function. Example
Dockerfile entry:
RUN zsh -i -c -- '-zplg-scheduler burst || true'
An example Dockerfile can be found
here.
Plugin Standard
Zsh plugins may look scary, as they seem to have some "architecture". In fact, what a plugin really is, is that:
- It has its directory added to
fpath - It has any first
*.plugin.zshfile sourced
That's it. When one contributes to Oh-My-Zsh or creates a plugin for any plugin manager, he only needs to account for this.
Also, there's a document that defines the Zsh Plugin Standard. Zplugin fully supports the standard.
Additional resources
Besides the main-knowledge source, i.e. this README, there are subpages that are guides and also an external web-page:
- Short-narration style WIKI
- Writing Zplugin extensions
- Code documentation
- Zplugin semigraphical dashboard
IRC Channel
Connect to chat.freenode.net:6697 (SSL) or chat.freenode.net:6667 and join #zplugin.

