From 2503b7ebf9aeee67dbd521d30f737131a370d2be Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Mon, 7 Jan 2013 08:29:01 -0600 Subject: [PATCH] Added ~/.dotfiles/bin to path Also removed zsh/lib dir and moved files up a dir --- zsh/{lib => }/aliases.zsh | 0 zsh/{lib => }/completion.zsh | 0 zsh/{lib => }/spectrum.zsh | 0 zsh/zshrc.symlink | 3 +++ 4 files changed, 3 insertions(+) rename zsh/{lib => }/aliases.zsh (100%) rename zsh/{lib => }/completion.zsh (100%) rename zsh/{lib => }/spectrum.zsh (100%) diff --git a/zsh/lib/aliases.zsh b/zsh/aliases.zsh similarity index 100% rename from zsh/lib/aliases.zsh rename to zsh/aliases.zsh diff --git a/zsh/lib/completion.zsh b/zsh/completion.zsh similarity index 100% rename from zsh/lib/completion.zsh rename to zsh/completion.zsh diff --git a/zsh/lib/spectrum.zsh b/zsh/spectrum.zsh similarity index 100% rename from zsh/lib/spectrum.zsh rename to zsh/spectrum.zsh diff --git a/zsh/zshrc.symlink b/zsh/zshrc.symlink index 7a55f80..bc09ca1 100644 --- a/zsh/zshrc.symlink +++ b/zsh/zshrc.symlink @@ -33,6 +33,9 @@ if [[ -d /usr/local/sbin ]]; then export PATH=/usr/local/sbin:$PATH fi +# adding path directory for custom scripts +export PATH=$ZSH/bin:$PATH + # check for custom bin directory and add to path if [[ -d ~/bin ]]; then export PATH=~/bin:$PATH