32 lines
693 B
Bash
32 lines
693 B
Bash
# vim: ft=zsh
|
|
|
|
fpath=(${HOME}/.zsh.d/themes $fpath)
|
|
|
|
# Load Prezto modules
|
|
# The order matters.
|
|
zstyle ':prezto:load' pmodule \
|
|
'environment' \
|
|
'utility' \
|
|
'git' \
|
|
'completion' \
|
|
'syntax-highlighting' \
|
|
'history-substring-search' \
|
|
'prompt' \
|
|
'history' \
|
|
'autosuggestions' \
|
|
'editor'
|
|
|
|
# Enable color output
|
|
zstyle ':prezto:*:*' color 'yes'
|
|
|
|
# Enable advanced syntax highlighting for commands
|
|
zstyle ':prezto:module:syntax-highlighting' highlighters \
|
|
'main' \
|
|
'brackets'
|
|
|
|
# Set the prompt theme to load
|
|
# Setting it to 'random' loads a random theme.
|
|
zstyle ':prezto:module:prompt' theme 'elatella'
|
|
|
|
# Use vi keybindings
|
|
zstyle ':prezto:module:editor' key-bindings 'vi'
|