-
Notifications
You must be signed in to change notification settings - Fork 19
/
full_featured.zsh
59 lines (49 loc) · 1.48 KB
/
full_featured.zsh
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
# .zshrc
# Clone zsh_unplugged and use it as a micro plugin manager.
[[ -d $ZDOTDIR/.unplugged ]] ||
git clone https://github.com/mattmc3/zsh_unplugged $ZDOTDIR/.unplugged
source $ZDOTDIR/.unplugged/zsh_unplugged.zsh
# clone-only plugins
plugin-clone romkatv/zsh-bench
path+=$ZPLUGINDIR/romkatv/zsh-bench
# load plugins
plugins=(
# Uncomment to load your custom zstyles.
# $ZDOTDIR/.zpreztorc
# $ZDOTDIR/.zstyles
# regular plugins
mattmc3/zman
zshzoo/macos
agkozak/zsh-z
# oh-my-zsh plugins
ohmyzsh/ohmyzsh/lib/clipboard.zsh
ohmyzsh/ohmyzsh/plugins/copyfile
ohmyzsh/ohmyzsh/plugins/copypath
ohmyzsh/ohmyzsh/plugins/copybuffer
ohmyzsh/ohmyzsh/plugins/magic-enter
ohmyzsh/ohmyzsh/plugins/fancy-ctrl-z
ohmyzsh/ohmyzsh/plugins/extract
# prezto modules
sorin-ionescu/prezto/runcoms/zprofile
sorin-ionescu/prezto/modules/terminal
sorin-ionescu/prezto/modules/editor
sorin-ionescu/prezto/modules/history
sorin-ionescu/prezto/modules/directory
# Uncomment to use your local plugins
# Put these in $ZDOTDIR/plugins
# my_plugin
# python
# prompt
sindresorhus/pure
# do completions
zsh-users/zsh-completions
sorin-ionescu/prezto/modules/completion
# Deferred plugins may speed up your load times even more.
# Once you load romkatv/zsh-defer, everything after gets deferred.
romkatv/zsh-defer
olets/zsh-abbr
zdharma-continuum/fast-syntax-highlighting
zsh-users/zsh-autosuggestions
zsh-users/zsh-history-substring-search
)
plugin-load $plugins