From 87f303fccfc1175f977c5d5774c89ad912511646 Mon Sep 17 00:00:00 2001 From: Joe Block Date: Tue, 26 Aug 2014 12:15:16 -0700 Subject: [PATCH] Make it easier to use zsh-users/zsh-completions repo with antigen --- load-zsh-completions.plugin.zsh | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 load-zsh-completions.plugin.zsh diff --git a/load-zsh-completions.plugin.zsh b/load-zsh-completions.plugin.zsh new file mode 100644 index 0000000..f5433ca --- /dev/null +++ b/load-zsh-completions.plugin.zsh @@ -0,0 +1,4 @@ +# Simple plugin script to make loading the zsh-completions repo into $fpath + +COMPLETIONS_D="$(dirname $0)/src" +fpath=(${COMPLETIONS_D} $fpath)