summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--assets/zsh/zshrc9
1 files changed, 9 insertions, 0 deletions
diff --git a/assets/zsh/zshrc b/assets/zsh/zshrc
index 970e271..5d73fba 100644
--- a/assets/zsh/zshrc
+++ b/assets/zsh/zshrc
@@ -49,3 +49,12 @@ eval "$(dircolors -b)"
alias ls='ls --color=auto'
EDITOR=vi
+
+if [ -d "/usr/local/chickens/default" ]; then
+ PATH="/usr/local/chickens/default/bin:$PATH"
+fi
+
+# set PATH so it includes user's private bin if it exists
+if [ -d "$HOME/bin" ] ; then
+ PATH="$HOME/bin:$PATH"
+fi