all repos — archive/dotfiles @ f766b7ba9ee98fe81a0b17581177314c57443818

Superseded by nixfiles

Zplug: Allow installing into $HOME
Alan Pearce alan@alanpearce.co.uk
Sun, 26 Jun 2016 16:34:09 +0200
commit

f766b7ba9ee98fe81a0b17581177314c57443818

parent

665d0c79f6c3167ca125666cedd85e8c29a47bdc

M host-ap-spotcap.local/config/zsh/zshenv.localhost-ap-spotcap.local/config/zsh/zshenv.local
@@ -3,3 +3,4 @@ if [[ -e $HOME/.nix-profile/etc/profile.d/nix.sh ]] then
 	. $HOME/.nix-profile/etc/profile.d/nix.sh;
 fi
+export ZPLUG_HOME=/usr/local/opt/zplug
M tag-zplug/config/zsh/zshenvtag-zplug/config/zsh/zshenv
@@ -0,0 +1,6 @@+if [[ -f $ZDOTDIR/zshenv.local ]]
+then
+	. $ZDOTDIR/zshenv.local
+fi
+
+ZPLUG_HOME=${ZPLUG_HOME:-~/projects/zplug}
M tag-zplug/config/zsh/zshrctag-zplug/config/zsh/zshrc
@@ -1,12 +1,11 @@ # -*- mode: sh; -*-
-export ZPLUG_HOME=/usr/local/opt/zplug
-source $ZPLUG_HOME/init.zsh
+source ${ZPLUG_HOME:-~/projects/zplug}/init.zsh
 
 zplug "zsh-users/zsh-completions"
 zplug "mafredri/zsh-async"
 zplug "sindresorhus/pure"
 zplug "Tarrasch/zsh-autoenv", as:plugin
-zplug "clvv/fasd", hook-build:"make install"
+zplug "clvv/fasd", hook-build:"PREFIX=$HOME make install"
 zplug "tymm/zsh-directory-history", as:command, use:"dir{hist,log}"
 zplug "tymm/zsh-directory-history", as:plugin