2019-05-01 03:29:37 +00:00
|
|
|
# vim: syn=zsh
|
|
|
|
|
|
|
|
source ${ZPLUG_HOME}/init.zsh
|
|
|
|
|
2019-11-20 22:24:15 +00:00
|
|
|
zplug "junegunn/fzf-bin", \
|
|
|
|
from:gh-r, \
|
|
|
|
as:command, \
|
|
|
|
rename-to:fzf
|
|
|
|
|
|
|
|
zplug "zdharma/zsh-diff-so-fancy", \
|
|
|
|
as:command, \
|
|
|
|
use:"bin/{git-dsf,diff-so-fancy}"
|
|
|
|
|
|
|
|
zplug "${ZDIR}/modules/bin/", \
|
2019-12-12 18:44:45 +00:00
|
|
|
from:local, \
|
2019-11-20 22:24:15 +00:00
|
|
|
as:command, \
|
|
|
|
use:"*"
|
2019-12-12 18:44:45 +00:00
|
|
|
|
2019-05-01 03:29:37 +00:00
|
|
|
zplug "zdharma/fast-syntax-highlighting", \
|
|
|
|
as:plugin, \
|
|
|
|
defer:2
|
|
|
|
|
|
|
|
zplug "hlissner/zsh-autopair", \
|
|
|
|
as:plugin, \
|
|
|
|
defer:2
|
|
|
|
|
|
|
|
zplug "zsh-users/zsh-history-substring-search", \
|
|
|
|
as:plugin, \
|
|
|
|
defer:2
|
|
|
|
|
2019-11-22 19:55:05 +00:00
|
|
|
zplug "zpm-zsh/autoenv", \
|
|
|
|
as:plugin, \
|
|
|
|
defer:2
|
2019-05-01 03:29:37 +00:00
|
|
|
|
|
|
|
zplug "zsh-users/zsh-autosuggestions", \
|
|
|
|
as:plugin, \
|
|
|
|
defer:2
|
|
|
|
|
2019-11-20 21:15:11 +00:00
|
|
|
zplug "junegunn/fzf", \
|
|
|
|
use:"shell/*.zsh", \
|
|
|
|
defer:2
|
|
|
|
|
2019-05-02 01:05:11 +00:00
|
|
|
zplug "${ZDIR}/modules/history/", \
|
|
|
|
from:local, \
|
|
|
|
as:plugin
|
|
|
|
|
2019-08-09 02:07:04 +00:00
|
|
|
zplug "${ZDIR}/modules/directory/", \
|
|
|
|
from:local, \
|
|
|
|
as:plugin
|
|
|
|
|
2019-05-02 02:39:00 +00:00
|
|
|
zplug "${ZDIR}/modules/complete/", \
|
|
|
|
from:local, \
|
|
|
|
as:plugin
|
2019-05-01 03:29:37 +00:00
|
|
|
|
2019-05-02 04:48:25 +00:00
|
|
|
zplug "${ZDIR}/modules/keybinds/", \
|
|
|
|
from:local, \
|
|
|
|
as:plugin
|
|
|
|
|
2019-05-04 05:46:59 +00:00
|
|
|
zplug "${ZDIR}/modules/alias/", \
|
|
|
|
from:local, \
|
|
|
|
as:plugin
|
|
|
|
|
2019-12-20 15:09:45 +00:00
|
|
|
if [ -z "$SSH_CONNECTION" ] ; then
|
|
|
|
zplug "${ZDIR}/modules/prompt/",\
|
|
|
|
from:local,\
|
|
|
|
use:uncommon.zsh, \
|
|
|
|
as:theme
|
|
|
|
else
|
|
|
|
zplug "denysdovhan/spaceship-prompt", \
|
|
|
|
use:spaceship.zsh, \
|
|
|
|
from:github, \
|
|
|
|
as:theme
|
|
|
|
fi
|
2019-05-01 03:29:37 +00:00
|
|
|
|
|
|
|
env_loader zplug
|
|
|
|
|
|
|
|
zplug load
|
|
|
|
|