-
Notifications
You must be signed in to change notification settings - Fork 0
/
zplug
57 lines (45 loc) · 1.39 KB
/
zplug
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
## Zplug version
# Initialize Zplug
source $ZPLUG_HOME/init.zsh
# Plugin list
# If zsh-syntax-highlighting is bundled after zsh-history-substring-search,
# they break, so get the order right.
zplug "zsh-users/zsh-autosuggestions"
zplug "zsh-users/zsh-syntax-highlighting", defer:2
zplug "zsh-users/zsh-history-substring-search"
# Type `git open` to open the GitHub page
# or website for a repository in your browser.
zplug "paulirish/git-open", as:plugin
# open a file at a specific line number %> vi file:123
zplug "nviennot/zsh-vim-plugin"
# Oh My Zsh plugins
zplug "plugins/vi-mode", from:oh-my-zsh
# k is the new l, yo
zplug "supercrabtree/k"
# # help remembering those aliases you defined once
zplug 'djui/alias-tips'
## Support commands for
# Hanami
zplug "davydovanton/hanami-zsh"
# Postgres commands, %> pg
zplug "caarlos0-graveyard/zsh-pg"
# Rails
zplug "paraqles/zsh-plugin-rails"
## Interface improvements
# The most awesome Powerline theme for ZSH around!
# zplug "bhilburn/powerlevel9k", use:powerlevel9k.zsh-theme
zplug 'romkatv/powerlevel10k', use:powerlevel10k.zsh-theme
# Sane title for terminal
zplug "jreese/zsh-titles"
## Time tracking
# Wakatime
zplug "wbinglee/zsh-wakatime"
# 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 load --verbose
zplug load