| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- # Color output (auto set to 'no' on dumb terminals).
- zstyle ':prezto:*:*' color 'yes'
- # Set the Zsh modules to load (man zshmodules).
- # zstyle ':prezto:load' zmodule 'attr' 'stat'
- # Set the Zsh functions to load (man zshcontrib).
- # zstyle ':prezto:load' zfunction 'zargs' 'zmv'
- # Set the Prezto modules to load (browse modules).
- # The order matters.
- zstyle ':prezto:load' pmodule \
- 'environment' \
- 'terminal' \
- 'editor' \
- 'history' \
- 'directory' \
- 'spectrum' \
- 'utility' \
- 'completion' \
- 'prompt' \
- 'git' \
- 'syntax-highlighting' \
- 'history-substring-search' \
- 'archive'
- #
- # Editor
- #
- # Set the key mapping style to 'emacs' or 'vi'.
- zstyle ':prezto:module:editor' key-bindings 'emacs'
- # Auto convert .... to ../..
- zstyle ':prezto:module:editor' dot-expansion 'yes'
- #
- # Terminal
- #
- zstyle ':prezto:module:terminal:window-title' format '%n@%m: %s'
- zstyle ':prezto:module:terminal:tab-title' format '%m: %s'
- zstyle ':prezto:module:terminal:multiplexer-title' format '%s'
- #
- # Prompt
- #
- # Set the prompt theme to load.
- # Setting it to 'random' loads a random theme.
- # Auto set to 'off' on dumb terminals.
- zstyle ':prezto:module:prompt' theme 'agnoster'
- #
- # Syntax Highlighting
- #
- # Set syntax highlighters.
- # By default, only the main highlighter is enabled.
- zstyle ':prezto:module:syntax-highlighting' highlighters \
- 'main' \
- 'brackets' \
- 'pattern' \
- 'cursor' \
- 'root'
|