zsh: load zplugin module if available
Alan Pearce alan@alanpearce.eu
Sun, 22 Sep 2019 14:02:30 +0200
1 files changed, 8 insertions(+), 0 deletions(-)
jump to
M zsh/.config/zsh/.zshrc → zsh/.config/zsh/.zshrc
@@ -1,4 +1,12 @@ # -*- mode: sh; -*- +if [[ -d "$HOME/.zplugin/bin/zmodules/Src" ]] +then + module_path+=( "/Users/alan/.zplugin/bin/zmodules/Src" ) + zmodload zdharma/zplugin +else + echo "Zplugin module is not installed" >&2 +fi + source $HOME/.zplugin/bin/zplugin.zsh autoload -Uz _zplugin (( ${+_comps} )) && _comps[zplugin]=_zplugin