Zsh Framework prezto Installation and Configuration

Tadashi Shigeoka ·  Thu, June 9, 2022

I’ll introduce the installation and configuration of the Zsh framework prezto.

Prezto is the configuration framework for Zsh

Installing prezto

Install prezto according to Installation - sorin-ionescu/prezto.

Changing prezto Configuration

  • Change theme to pure
  • Add modules
# ~/.zpreztorc

zstyle ':prezto:module:prompt' theme 'pure'

zstyle ':prezto:load' pmodule \\
  'environment' \\
  'terminal' \\
  'editor' \\
  'history' \\
  'directory' \\
  'spectrum' \\
  'utility' \\
  'completion' \\
  'history-substring-search' \\
  # Added (from here)
  'autosuggestions' \\
  'docker' \\
  'git' \\
  'homebrew' \\
  'node' \\
  'osx' \\
  'syntax-highlighting' \\
  # Added (to here)
  'prompt'

Above, I installed and configured the Zsh framework prezto.

That’s all from the Gemba.

Reference Information