meta_package_manager.managers.zinit module¶
- meta_package_manager.managers.zinit.zinit_source_path()[source]¶
Locate the
zinit.zshfile every invocation sources.Falls back to the current installer’s location when none of the candidates exists, so the built command stays well-formed and simply fails to source, which is what makes the version probe double as Zinit’s presence check.
- Return type:
- class meta_package_manager.managers.zinit.Zinit[source]¶
Bases:
PackageManagerZinit is a flexible and fast Zsh plugin manager.
Zinit installs Zsh plugins, snippets and completions from GitHub and other forges, cloning each into
$ZINIT[PLUGINS_DIR]. Packages are identified by theuser/reposlug Zinit both reports and accepts, which is the id mpm keys them on. A plugin the user renamed through theid-asice reports under that alias instead, and feeds back into every operation just the same.Caution
zinitis a shell function, not a standalone binary, so every invocation is wrapped inzsh -c 'source <zinit.zsh> && zinit <args>'. Zsh is therefore the manager’s CLI, and Zinit’s own presence is established by the version probe: a host with Zsh but no Zinit fails to source and reports no version, which leaves the manager unavailable.Caution
Zinit.installed()is the one operation that cannot use that wrapper. Zinit tracks plugins in shell state populated by thezinit loadcalls of the user’s.zshrc, so a freshly sourced non-interactive shell knows of none. That query therefore runszsh --interactive, paying a full shell startup to inventory what the user’s Zsh actually loads. Plugins deferred with thewaitice (Zinit’s turbo mode) load asynchronously after the prompt would have been drawn, so a non-interactive run may miss them.Note
No
outdated: Zinit’s only “what would change” command iszinit status --all, which unconditionally runs.zinit-self-updatefirst, pulling and recompiling Zinit itself. A query that mutates the manager is not a query, so mpm auto-skips the operation andupgrade --allstill works.Note
No
search: Zinit resolves plugins straight from forge URLs and indexes no registry to search.Initialize
cli_errorslist.- homepage_url: str | None = 'https://github.com/zdharma-continuum/zinit'¶
Home page of the project, only used in documentation for reference.
- logo: str | None = 'zsh'¶
Slug of the brand mark standing for this manager in the documentation.
Names an SVG vendored under
docs/assets/managers/, whose provenance and license are recorded indocs/assets/managers/logos.yaml. Inlined at the top of the manager’s page bymeta_package_manager._docs; a manager leaving it unset keeps the page’s default package glyph.Several managers legitimately share one slug, either because they wrap the same upstream (
brewandcask) or because the tool has no mark of its own and its ecosystem’s stands in (aptunder Debian’s swirl,cargounder Rust’s gear). Documentation-only, likehomepage_url: no CLI output reads it.
- platforms: frozenset[Platform] | Group | Platform | Iterable[Platform | Group] = frozenset({Platform(id='almalinux', name='AlmaLinux'), Platform(id='alpine', name='Alpine Linux'), Platform(id='altlinux', name='ALT Linux'), Platform(id='amzn', name='Amazon Linux'), Platform(id='android', name='Android'), Platform(id='arch', name='Arch Linux'), Platform(id='buildroot', name='Buildroot'), Platform(id='cachyos', name='CachyOS'), Platform(id='centos', name='CentOS'), Platform(id='chromeos', name='ChromeOS'), Platform(id='clearlinux', name='Clear Linux OS'), Platform(id='cloudlinux', name='CloudLinux OS'), Platform(id='debian', name='Debian'), Platform(id='endeavouros', name='EndeavourOS'), Platform(id='exherbo', name='Exherbo Linux'), Platform(id='fedora', name='Fedora'), Platform(id='generic_linux', name='Generic Linux'), Platform(id='gentoo', name='Gentoo Linux'), Platform(id='guix', name='Guix System'), Platform(id='ibm_powerkvm', name='IBM PowerKVM'), Platform(id='kali', name='Kali Linux'), Platform(id='kvmibm', name='KVM for IBM z Systems'), Platform(id='linuxmint', name='Linux Mint'), Platform(id='macos', name='macOS'), Platform(id='mageia', name='Mageia'), Platform(id='mandriva', name='Mandriva Linux'), Platform(id='manjaro', name='Manjaro Linux'), Platform(id='nixos', name='NixOS'), Platform(id='nobara', name='Nobara'), Platform(id='opensuse', name='openSUSE'), Platform(id='openwrt', name='OpenWrt'), Platform(id='oracle', name='Oracle Linux'), Platform(id='parallels', name='Parallels'), Platform(id='pidora', name='Pidora'), Platform(id='pikaos', name='PikaOS'), Platform(id='raspbian', name='Raspbian'), Platform(id='rhel', name='RedHat Enterprise Linux'), Platform(id='rocky', name='Rocky Linux'), Platform(id='scientific', name='Scientific Linux'), Platform(id='slackware', name='Slackware'), Platform(id='sles', name='SUSE Linux Enterprise Server'), Platform(id='slitaz', name='SliTaz GNU/Linux'), Platform(id='sourcemage', name='Source Mage GNU/Linux'), Platform(id='tuxedo', name='Tuxedo OS'), Platform(id='ubuntu', name='Ubuntu'), Platform(id='ultramarine', name='Ultramarine'), Platform(id='void', name='Void Linux'), Platform(id='wsl1', name='Windows Subsystem for Linux v1'), Platform(id='wsl2', name='Windows Subsystem for Linux v2'), Platform(id='xenserver', name='XenServer')})¶
List of platforms supported by the manager.
Allows for a mishmash of platforms and groups of platforms. Will be normalized into a
frozensetofPlatforminstances at instantiation.
- requirement: str | None = '>=3.10.0'¶
First release of the
zdharma-continuumfork whose confirmation prompt, and thus the--yesflagZinit.remove()depends on, behaves.
- cli_names: tuple[str, ...] = ('zsh',)¶
Zsh is the binary mpm actually executes.
Zinit itself is a shell function defined by a
zinit.zshfile that is sourced, never executed, so it cannot serve as the manager’s CLI: mpm requires an executable, and that file ships non-executable. Keying the manager on Zsh instead makes the version probe the presence check, since sourcing an absentzinit.zshyields no version and leaves the manager unavailable.
- extra_env: ClassVar = {'SHELL_SESSIONS_DISABLE': '1'}¶
Keep macOS’ Zsh session bookkeeping from writing a session file on every query.
- version_cli_options: tuple[str, ...] = ('version',)¶
CLI options used to produce the version of the package manager.
The raw output produced by the package manager CLI will be parsed with the
version_regexesbelow to extract the version number.
- version_regexes: tuple[str, ...] = ('zinit\\s+v(?P<version>\\S+)',)¶
Zinit reports the
git describeof its own checkout, so a clone sitting past a tag reports a3.15.0-5-gb1946acflavored version.$ zinit version zinit v3.15.0 (darwin25.4.0_arm64)
- id: str = 'zinit'¶
Package manager’s ID.
Derived by defaults from the lower-cased class name in which underscores
_are replaced by dashes-.This ID must be unique among all package manager definitions and lower-case, as they’re used as feature flags for the mpm CLI.
- virtual: bool = False¶
Should we expose the package manager to the user?
Virtual package manager are just skeleton classes used to factorize code among managers of the same family.
- build_cli(*args, **kwargs)[source]¶
Wrap all CLI invocations in the Zsh shell Zinit needs.
Three subcommands need a shell of their own shape, so the wrapper is chosen from the subcommand rather than being uniform.
pluginsreads the plugin registry out of shell state that thezinit loadcalls of the user’s.zshrcpopulate, so it runszsh --interactiveand lets that file do the sourcing. Sourcingzinit.zshagain on top would reset the registry and report nothing.loadis prefixed with thecloneonlyice, which stops Zinit right after the clone. Installing a plugin otherwise sources it, running third-party shell code inside the process mpm drives.versionis guarded by a readability test that exits successfully whenzinit.zshis absent. Zsh is the default shell on macOS and near ubiquitous elsewhere, so an unguarded probe would turn every host that merely has Zsh into a manager reporting errors. Azinit.zshthat is present but broken still fails loudly.Note
The
**kwargsaccepted by the base class (auto_pre_args,sudo, etc.) are accepted but ignored because every invocation goes through thezsh -cwrapper and Zinit never requires elevated privileges.
- property installed: Iterator[Package]¶
Fetch installed packages.
Zinit reports no version alongside a plugin, so packages are yielded bare: pinning a plugin to a revision is an ice modifier of the user’s own
zinit loadcall, not state Zinit surfaces in this listing.$ zsh --interactive -c 'zinit plugins' ==> 3 Plugins 1 L ~zinit/zinit.git 2 L zdharma-continuum/fast-syntax-highlighting 3 U zsh-users/zsh-completions Loaded: L | Unloaded: U
- install(package_id, version=None)[source]¶
Install one package.
Zinit conflates installing a plugin with sourcing it, so
Zinit.build_cli()sets thecloneonlyice ahead of this call.$ zinit load zdharma-continuum/null
- Return type:
- upgrade_all_cli()[source]¶
Generates the CLI to upgrade all packages.
Note
Zinit self-updates before updating anything else, so this also pulls and recompiles Zinit itself.
$ zinit update --all