-
Notifications
You must be signed in to change notification settings - Fork 4
/
zshrc
47 lines (39 loc) · 1.49 KB
/
zshrc
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
source ~/.zplug/init.zsh
zplug 'zplug/zplug', hook-build:'zplug --self-manage'
zplug "modules/history", from:prezto
zplug "zsh-users/zsh-autosuggestions", defer:3
zplug "zsh-users/zsh-completions"
zplug "zsh-users/zsh-syntax-highlighting", defer:1
zplug "zsh-users/zsh-history-substring-search", defer:2
# zplug "zsh-users/zsh-completions"
# zplug "zsh-users/zsh-syntax-highlighting"
# zplug "zsh-users/zsh-history-substring-search"
# zplug "zsh-users/zsh-autosuggestions"
zplug "modules/osx", from:prezto
zplug "plugins/git", from:oh-my-zsh
# zplug "plugins/history-substring-search", from:oh-my-zsh
#zplug "modules/environment", from:prezto
#zplug "modules/terminal", from:prezto
#zplug "modules/editor", from:prezto
#zplug "modules/directory", from:prezto
#zplug "modules/spectrum", from:prezto
#zplug "modules/utility", from:prezto
# zplug "modules/completion", from:prezto
# zplug "modules/autosuggestions", from:prezto
#zplug "modules/git", from:prezto
#zplug "modules/homebrew", from:prezto
# zplug "modules/syntax-highlighting", from:prezto
# zplug "modules/history-substring-search", from:prezto
#zplug "modules/prompt", from:prezto
zplug mafredri/zsh-async, from:github
zplug sindresorhus/pure, use:pure.zsh, from:github, as:theme
# Install plugins if there are plugins that have not been installed
if ! zplug check --verbose; then
printf "Install? [y/N]: "
if read -q; then
echo; zplug install
fi
fi
zplug "~/dotfiles/zsh", from:local, use:"*.zsh"
# zplug load --verbose
zplug load