James Patrick
898500ffbb
I've reorganized some of the fzf dependency some. There are large number of resources I need from the fzf repo that I have been omitting because zplug does no work well with a repo that both has both bins and plugins. Instead I've been manually managing the fzf.zsh files and the fzf-tmux then using the binary from fzf-bin. This nominally worked for zsh it wasnone functioning for other things that used fzf as a dependency. Additionally this broke the rule of don't write what you don't have to mantra of this project.
69 lines
1.2 KiB
Plaintext
69 lines
1.2 KiB
Plaintext
# vim: syn=zsh
|
|
|
|
source ${ZPLUG_HOME}/init.zsh
|
|
|
|
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
|
|
|
|
zplug "zpm-zsh/autoenv"
|
|
|
|
zplug "zsh-users/zsh-autosuggestions", \
|
|
as:plugin, \
|
|
defer:2
|
|
|
|
zplug "junegunn/fzf", \
|
|
use:"shell/*.zsh", \
|
|
defer:2
|
|
|
|
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/", \
|
|
as:command, \
|
|
use:"*"
|
|
|
|
zplug "${ZDIR}/modules/history/", \
|
|
from:local, \
|
|
as:plugin
|
|
|
|
zplug "${ZDIR}/modules/directory/", \
|
|
from:local, \
|
|
as:plugin
|
|
|
|
zplug "${ZDIR}/modules/complete/", \
|
|
from:local, \
|
|
as:plugin
|
|
|
|
zplug "${ZDIR}/modules/keybinds/", \
|
|
from:local, \
|
|
as:plugin
|
|
|
|
zplug "${ZDIR}/modules/alias/", \
|
|
from:local, \
|
|
as:plugin
|
|
|
|
zplug "denysdovhan/spaceship-prompt", \
|
|
use:spaceship.zsh, \
|
|
from:github, \
|
|
as:theme
|
|
|
|
env_loader zplug
|
|
|
|
zplug load
|
|
|