-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathzpreztorc
executable file
·35 lines (28 loc) · 1.03 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
#
# Sets Prezto options.
#
# Authors:
# Sorin Ionescu <[email protected]>
# Colin Hebert <[email protected]>
#
zstyle ':prezto:load' pmodule-dirs $HOME/.zprezto-contrib
# 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 Prezto modules to load (browse modules).
# The order matters.
zstyle ':prezto:load' pmodule \
'custom-prompt' 'prompt' \
'custom-tmux' 'utility' 'environment' 'completion' 'history' \
'git' 'history-substring-search' 'syntax-highlighting' \
'autosuggestions' 'command-not-found'
# Auto launch GNU Screen at start-up (Terminal only).
if [[ $TERM_PROGRAM == 'Apple_Terminal' ]]; then
zstyle ':prezto:module:tmux:auto-start' local 'yes'
fi
zstyle ':prezto:module:git:alias' skip 'yes'
# 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 'makkhdyn'