all repos — nixfiles @ 7db736a3fa3e2656b8173ce53265d3648bff16b5

System and user configuration, managed by nix and home-manager

zsh: Add site-functions under /usr/local to fpath, if exists
Alan Pearce alan@alanpearce.co.uk
Sat, 09 Nov 2013 10:43:24 +0000
commit

7db736a3fa3e2656b8173ce53265d3648bff16b5

parent

7a8e863372414120e2a25ee4f11ddc7b60e8c03d

1 files changed, 5 insertions(+), 0 deletions(-)

jump to
M zsh/environment.zshzsh/environment.zsh
@@ -27,6 +27,11 @@ then 	fpath=(/usr/local/share/zsh-completions $fpath)
 fi
 
+if [[ -d /usr/local/share/zsh/site-functions ]]
+then
+	fpath=(/usr/local/share/zsh/site-functions $fpath)
+fi
+
 export FPATH
 
 case $OSTYPE in