đ Configuration management
Hash parameterâ
Set the initial hash definition and custom values, before enabling Zi.
Example:
typeset -A ZIZI[BIN_DIR]="some/custom/path/to/bin"source "${ZI[BIN_DIR]}/zi.zsh"
Customize pathsâ
Hash Field | Default | Description |
---|---|---|
ZI[HOME_DIR] | $HOME/.zi | Where Zi should create all working directories |
ZI[BIN_DIR] | $HOME/.zi/bin | Directory where Zi code resides |
ZI[COMPLETIONS_DIR] | $ZI[HOME_DIR]/completions | Completion working directory |
ZI[MAN_DIR] | $ZPFX/man | Directory to store manpages (atclone"cp -vf man.1 $ZI[MAN_DIR]/man1" ). If overridden, this directory will not necessarily be used by man |
ZI[PLUGINS_DIR] | $ZI[HOME_DIR]/plugins | Plugins working directory |
ZI[SNIPPETS_DIR] | $ZI[HOME_DIR]/snippets | Snippets working directory |
ZI[ZCOMPDUMP_PATH] | $XDG_DATA_HOME:-$ZDOTDIR:-$HOME/.zcompdump | Path to .zcompdump file (including file) |
ZI[ZMODULES_DIR] | $ZI[HOME_DIR]/zmodules | Zsh modules working directory |
ZPFX | $ZI[HOME_DIR]/polaris | Directory to store binary and related files |
Modify settingsâ
Hash Field | Default | Description |
---|---|---|
ZI[OPTIMIZE_OUT_DISK_ACCESSES] | undefined | If 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] | undefined | Options for compinit call (e.g: done by zicompinit ), commonly used with -C to speed up loading |
ZI[MUTE_WARNINGS] | undefined | If set to 1 , mutes some warnings, specifically the plugin already registered warning |
ZI[PKG_OWNER] | z-shell | Owner 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:
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:
Git tools:
- paulirish/git-open,
- paulirish/git-recent,
- davidosomething/git-my,
- arzzen/git-quick-stats,
- iwata/git-now,
- tj/git-extras,
- 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â
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â
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â
zstyle ':completion:*' completer _complete _match _approximatezstyle ':completion:*:match:*' original onlyzstyle -e ':completion:*:approximate:*' max-errors 'reply=($((($#PREFIX+$#SUFFIX)/3>7?7:($#PREFIX+$#SUFFIX)/3))numeric)'
Pretty completionsâ
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 yeszstyle ':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 truezstyle ':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:
skip_global_compinit=1
Multiple promptsâ
Syntax | Description |
---|---|
load'âĻ' | Condition that when fulfilled will cause the plugin to be loaded. |
unload'âĻ' | Same as above, but will unload the plugin. |
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 âĻ
.
Syntax | Description |
---|---|
atload'!âĻ' | Run the precmd hooks to make the prompts fully initialized when loaded in the middle of the prompt. |
precmd | Hooks are normally run before each new prompt. |
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:
Condition | Description |
---|---|
![[ $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. |
lucid | Don't show the under-prompt message that says e.g: Loaded geometry-zsh/geometry . |
nocd | Don'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