-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathzpreztorc
78 lines (65 loc) · 1.98 KB
/
zpreztorc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#
# Sets Prezto options.
#
# Authors:
# Sorin Ionescu <[email protected]>
# Michael D'Auria <[email protected]>
#
# Set case-sensitivity for completion, history lookup, etc.
zstyle ':prezto:*:*' case-sensitive 'no'
# 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' \
'syntax-highlighting' \
'archive' \
'fasd' \
'git' \
'history-substring-search' \
'node' \
'osx' \
'prompt' \
'rails' \
'rsync' \
'ruby' \
'tmux' \
'completion'
# To enable key bindings, add the following to zpreztorc, and replace 'map'
# with 'emacs' or 'vi.
zstyle ':prezto:module:editor' keymap 'emacs'
# To enable the auto conversion of .... to ../.., add the following to
# zpreztorc.
zstyle ':prezto:module:editor' dot-expansion 'yes'
# Ignore submodules when they are 'dirty', 'untracked', 'all', or 'none'.
zstyle ':prezto:module:git:status:ignore' submodules 'all'
# 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 'crowdtap'
# Set syntax highlighters, default: all
zstyle ':prezto:module:syntax-highlighting' highlighters \
'main' \
'brackets' \
'pattern' \
'cursor'
# Auto set the tab and window titles.
#zstyle ':prezto:module:terminal' auto-title 'yes'
# Auto start a session when Zsh is launched, default: no
# zstyle ':prezto:module:tmux' auto-start 'yes'
# Your custom overrides
# https://github.com/sorin-ionescu/prezto/tree/master/modules
if [[ -s "${ZDOTDIR:-$HOME}/.zpreztorc-mine" ]]; then
source "${ZDOTDIR:-$HOME}/.zpreztorc-mine"
fi