Skip to main content

🏗 Configuration management

Hash parameter​

Set the initial hash definition and custom values, before enabling Zi.

Example:

typeset -A ZI
ZI[BIN_DIR]="some/custom/path/to/bin"
source "${ZI[BIN_DIR]}/zi.zsh"

Customize paths​

Hash FieldDefaultDescription
ZI[HOME_DIR]$HOME/.ziWhere Zi should create all working directories
ZI[BIN_DIR]$HOME/.zi/binDirectory where Zi code resides
ZI[COMPLETIONS_DIR]$ZI[HOME_DIR]/completionsCompletion working directory
ZI[CACHE_DIR]$HOME/.cache/ziCache directory
ZI[CONFIG_DIR]$HOME/.config/ziDirectory for configuration files
ZI[MAN_DIR]$ZPFX/manDirectory to store manpages
ZI[LOG_DIR]$ZI[CACHE_DIR]/logDirectory to store log files
ZI[PLUGINS_DIR]$ZI[HOME_DIR]/pluginsPlugins working directory
ZI[SNIPPETS_DIR]$ZI[HOME_DIR]/snippetsSnippets working directory
ZI[ZCOMPDUMP_PATH]${ZI[CACHE_DIR]}/.zcompdumpPath to .zcompdump file
ZI[ZMODULES_DIR]$ZI[HOME_DIR]/zmodulesZsh modules working directory
ZPFX$ZI[HOME_DIR]/polarisDirectory to store binary and related files

Modify settings​

Hash FieldDefaultDescription
ZI[OPTIMIZE_OUT_DISK_ACCESSES]undefinedIf set to 1, will skip checking if a turbo-loaded object exists on the disk. This option can give a performance gain of about 10 ms out of 150 ms (e.g: Zsh will start up in 140 ms instead of 150 ms).
ZI[COMPINIT_OPTS]undefinedOptions for compinit call (e.g: done by zicompinit), commonly used with -C to speed up loading
ZI[MUTE_WARNINGS]undefinedIf set to 1, mutes some warnings, specifically the plugin already registered warning
ZI[PKG_OWNER]z-shellOwner of the packages (zi pack â€Ļ)

Non-GitHub (Local) Plugins​

Use the create subcommand with user name _local (the default) to create the plugin's skeleton in $ZI[PLUGINS_DIR]. It will be not connected with the GitHub repository (because of the user name being _local). To enter the plugin's directory use the cd command with just the plugin's name (without _local, it's optional).

If the username is not _local, then Zi will create a repository also on GitHub and set up the correct repository origin.

Extending Git​

Several projects provide git extensions. Installing them with Zi has many benefits:

  • all files are under $HOME – no administrator rights are needed,
  • declarative setup (like Chef or Puppet) – copying .zshrc to a different account brings also git-related setup,
  • easy update by e.g: zi update --all.

Below is a configuration that adds multiple git extensions, loaded in Turbo mode, 1 second after prompt, with the use of the bin-gem-node annex:

~/.zshrc
zi as'null' wait'1' lucid for \
sbin Fakerr/git-recall \
sbin cloneopts paulirish/git-open \
sbin paulirish/git-recent \
sbin davidosomething/git-my \
sbin iwata/git-now \
sbin atload'export _MENU_THEME=legacy' \
arzzen/git-quick-stats \
sbin'bin/git-dsf;bin/diff-so-fancy' \
z-shell/zsh-diff-so-fancy \
make'PREFIX=$ZPFX install' \
tj/git-extras

The target directory for installed files is $ZPFX - ~/.zi/polaris by default.

With meta-plugins consisting of:

Annexes:

  1. z-shell/z-a-readurl,
  2. z-shell/z-a-patch-dl,
  3. z-shell/z-a-rust,
  4. z-shell/z-a-bin-gem-node.

Git tools:

  1. paulirish/git-open,
  2. paulirish/git-recent,
  3. davidosomething/git-my,
  4. arzzen/git-quick-stats,
  5. iwata/git-now,
  6. tj/git-extras,
  7. wfxr/forgit.

just run:

zi light-mode for z-shell/z-a-meta-plugins @annexes @ext-git

Zsh option: setopt​

Options are primarily referred to by name. These names are case insensitive and underscores are ignored. For example, allexport is equivalent to A__lleXP_ort.

The sense of an option name may be inverted by preceding it with no, so setopt No_Beep is equivalent to unsetopt beep. This inversion can only be done once, so nonobeep is not a synonym for beep. Similarly, tify is not a synonym for nonotify (the inversion of notify).

History optimization​

~/.zshrc
setopt append_history         # Allow multiple sessions to append to one Zsh command history.
setopt extended_history # Show timestamp in history.
setopt hist_expire_dups_first # Expire A duplicate event first when trimming history.
setopt hist_find_no_dups # Do not display a previously found event.
setopt hist_ignore_all_dups # Remove older duplicate entries from history.
setopt hist_ignore_dups # Do not record an event that was just recorded again.
setopt hist_ignore_space # Do not record an Event Starting With A Space.
setopt hist_reduce_blanks # Remove superfluous blanks from history items.
setopt hist_save_no_dups # Do not write a duplicate event to the history file.
setopt hist_verify # Do not execute immediately upon history expansion.
setopt inc_append_history # Write to the history file immediately, not when the shell exits.
setopt share_history # Share history between different instances of the shell.

Other tweaks​

~/.zshrc
setopt auto_cd              # Use cd by typing directory name if it's not a command.
setopt auto_list # Automatically list choices on ambiguous completion.
setopt auto_pushd # Make cd push the old directory onto the directory stack.
setopt bang_hist # Treat the '!' character, especially during Expansion.
setopt interactive_comments # Comments even in interactive shells.
setopt multios # Implicit tees or cats when multiple redirections are attempted.
setopt no_beep # Don't beep on error.
setopt prompt_subst # Substitution of parameters inside the prompt each time the prompt is drawn.
setopt pushd_ignore_dups # Don't push multiple copies directory onto the directory stack.
setopt pushd_minus # Swap the meaning of cd +1 and cd -1 to the opposite.

Style the completion system with: zstyle​

What does zstyle do? - unix.stackexchange.com/what-does-zstyle-do

The zstyle handles the obvious style control for the completion system, but it seems to cover more than just that. e.g., the vcs_info module relies on it for the display of git status in your prompt. You can start by looking at the few explanatory paragraphs in man zshmodules in the zstyle section.

Fuzzy matching of completions​

~/.zshrc
zstyle ':completion:*' completer _complete _match _approximate
zstyle ':completion:*:match:*' original only
zstyle -e ':completion:*:approximate:*' max-errors 'reply=($((($#PREFIX+$#SUFFIX)/3>7?7:($#PREFIX+$#SUFFIX)/3))numeric)'

Pretty completions​

~/.zshrc
zstyle ':completion:*:matches' group 'yes'
zstyle ':completion:*:options' description 'yes'
zstyle ':completion:*:options' auto-description '%d'
zstyle ':completion:*:corrections' format ' %F{green}-- %d (errors: %e) --%f'
zstyle ':completion:*:descriptions' format ' %F{yellow}-- %d --%f'
zstyle ':completion:*:messages' format ' %F{purple} -- %d --%f'
zstyle ':completion:*:warnings' format ' %F{red}-- no matches found --%f'
zstyle ':completion:*:default' list-prompt '%S%M matches%s'
zstyle ':completion:*' format ' %F{yellow}-- %d --%f'
zstyle ':completion:*' group-name ''
zstyle ':completion:*' verbose yes
zstyle ':completion:*' matcher-list 'm:{a-zA-Z}={A-Za-z}' 'r:|[._-]=* r:|=*' 'l:|=* r:|=*'
zstyle ':completion:*:functions' ignored-patterns '(_*|pre(cmd|exec))'
zstyle ':completion:*' use-cache true
zstyle ':completion:*' rehash true

Do menu-driven completion​

zstyle ':completion:*' menu select

Color completion for some things​

zstyle ':completion:*' list-colors ${(s.:.)LS_COLORS}

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 the user loads any completion-equipped plugins, i.e. almost on 100% – add the following line to ~/.zshenv to skip the not helping Ubuntu global compinit:

~/.zshenv
skip_global_compinit=1

Multiple prompts​

SyntaxDescription
load'â€Ļ'Condition that when fulfilled will cause the plugin to be loaded.
unload'â€Ļ'Same as above, but will unload the plugin.
note

zi light â€Ļ loads the plugin without tracking it, while zi load tracks the plugin. To be able to unload the plugin, it has to be loaded with zi load â€Ļ instead of zi light â€Ļ.

SyntaxDescription
atload'!â€Ļ'Run the precmd hooks to make the prompts fully initialized when loaded in the middle of the prompt.
precmdHooks are normally run before each new prompt.
info

Exclamation mark causes the effects of the functions to be tracked.

To allow better unloading, conditions are checked every second, you can use conditions like:

ConditionDescription
![[ $PWD == *github* ]]Change prompt after changing directory to *github*.
![[ $MYPROMPT = 1 ]]Change prompt when variable MYPROMPT = 1 is true.
![[ â€Ļ ]]The exclamation mark causes the prompt to be reset after loading or unloading the plugin pick'/dev/null' – disable sourcing of the default-found file.
multisrc'â€Ļ'Source multiple files.
lucidDon't show the under-prompt message that says e.g: Loaded geometry-zsh/geometry.
nocdDon't cd into the plugin's directory when executing the atload'â€Ļ'.
atload'â€Ļ'This ice can make the path that's displayed by the theme point to that directory.

Loading and unloading themes (8 examples)​

1 - zprompts

zi lucid load'![[ $MYPROMPT = 1 ]]' unload'![[ $MYPROMPT != 1 ]]' \
atload'!promptinit; typeset -g PSSHORT=0; prompt sprint3 yellow red green blue' nocd for \
z-shell/zprompts

2 - lambda-mod-zsh-theme

zi lucid load'![[ $MYPROMPT = 2 ]]' unload'![[ $MYPROMPT != 2 ]]' nocd for \
halfo/lambda-mod-zsh-theme

3 - lambda-gitster

zi lucid load'![[ $MYPROMPT = 3 ]]' unload'![[ $MYPROMPT != 3 ]]' nocd for \
ergenekonyigit/lambda-gitster

4 - geometry

zi lucid load'![[ $MYPROMPT = 4 ]]' unload'![[ $MYPROMPT != 4 ]]' \
atload'!geometry::prompt' nocd \
atinit'GEOMETRY_COLOR_DIR=63 GEOMETRY_PATH_COLOR=63' for \
geometry-zsh/geometry

5 - pure

zi lucid load'![[ $MYPROMPT = 5 ]]' unload'![[ $MYPROMPT != 5 ]]' \
pick"/dev/null" multisrc"{async,pure}.zsh" atload'!prompt_pure_precmd' nocd for \
sindresorhus/pure

6 - agkozak-zsh-theme

zi lucid load'![[ $MYPROMPT = 6 ]]' unload'![[ $MYPROMPT != 6 ]]' \
atload'!_agkozak_precmd' nocd atinit'AGKOZAK_FORCE_ASYNC_METHOD=subst-async' for \
agkozak/agkozak-zsh-theme

7 - zinc

zi load'![[ $MYPROMPT = 7 ]]' unload'![[ $MYPROMPT != 7 ]]' \
compile"{zinc_functions/*,segments/*,zinc.zsh}" nocompletions \
atload'!prompt_zinc_setup; prompt_zinc_precmd' nocd for \
robobenklein/zinc

8 - git-prompt

zi lucid load'![[ $MYPROMPT = 8 ]]' unload'![[ $MYPROMPT != 8 ]]' \
atload'!_zsh_git_prompt_precmd_hook' nocd for \
woefe/git-prompt.zsh