2019-05-01 03:29:37 +00:00
|
|
|
# vim: syn=zsh
|
|
|
|
|
|
|
|
source ${ZPLUG_HOME}/init.zsh
|
|
|
|
|
2019-12-20 18:32:03 +00:00
|
|
|
zplug "${ZDIR}/modules/bin/", from:local, as:command, use:"*"
|
|
|
|
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/alias/", from:local, as:plugin
|
|
|
|
zplug "${ZDIR}/modules/complete/", from:local, as:plugin
|
|
|
|
zplug "${ZDIR}/modules/directory/", from:local, as:plugin
|
|
|
|
zplug "${ZDIR}/modules/history/", from:local, as:plugin
|
|
|
|
zplug "${ZDIR}/modules/keybinds/", from:local, as:plugin
|
|
|
|
zplug "hlissner/zsh-autopair", as:plugin, defer:2
|
|
|
|
zplug "junegunn/fzf", use:"shell/*.zsh", defer:2
|
2020-01-13 19:23:50 +00:00
|
|
|
zplug "mafredri/zsh-async", as:plugin, defer:2
|
2020-01-13 19:25:04 +00:00
|
|
|
zplug "wfxr/forgit", as:plugin, defer:2
|
2019-12-20 18:32:03 +00:00
|
|
|
zplug "zdharma/fast-syntax-highlighting", as:plugin, defer:2
|
|
|
|
zplug "zsh-users/zsh-autosuggestions", as:plugin, defer:2
|
2019-12-27 01:24:12 +00:00
|
|
|
zplug "zsh-users/zsh-completions", as:plugin, defer:2
|
2019-12-20 18:32:03 +00:00
|
|
|
zplug "zsh-users/zsh-history-substring-search", as:plugin, defer:2
|
2019-05-04 05:46:59 +00:00
|
|
|
|
2019-12-20 15:21:50 +00:00
|
|
|
if [ -n "$SSH_CONNECTION" ] ; then
|
2019-12-20 18:32:03 +00:00
|
|
|
zplug "${ZDIR}/modules/prompt/",\ from:local,\ use:uncommon.zsh, as:theme
|
2019-12-20 15:09:45 +00:00
|
|
|
else
|
2019-12-20 18:32:03 +00:00
|
|
|
zplug "denysdovhan/spaceship-prompt", use:spaceship.zsh, from:github, as:theme
|
2019-12-20 15:09:45 +00:00
|
|
|
fi
|
2019-05-01 03:29:37 +00:00
|
|
|
|
|
|
|
env_loader zplug
|
|
|
|
zplug load
|