-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.zplugrc
37 lines (29 loc) · 1.11 KB
/
.zplugrc
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
source ~/.zplug/init.zsh
zplug "junegunn/fzf"
zplug "zsh-users/zsh-syntax-highlighting"
zplug "plugins/git", from:oh-my-zsh
zplug "plugins/common-aliases", from:oh-my-zsh
zplug 'dracula/zsh', as:theme
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"fzf.zsh"
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"nodenv.zsh"
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"rbenv.zsh"
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"pyenv.zsh"
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"utils.zsh"
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"custom_zsh.zsh"
# mac only
if [[ $(uname) == "Darwin" ]]; then
zplug "~/git/dotfiles/config/k014_zsh", from:local, defer:1, use:"mac.zsh"
fi
# too slow
# # Install plugins if there are plugins that have not been installed
# echo check 0
# if ! zplug check --verbose; then
# printf "Install? [y/N]: "
# if read -q; then
# echo; zplug install
# fi
# fi
# echo check 1
# Then, source plugins and add commands to $PATH
zplug load
# zplug load --verbose