summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2014-01-10 00:06:53 +0100
committerFlorian Pritz <bluewind@xinu.at>2014-01-10 00:06:53 +0100
commitd22f3a02d2a16efb8b96a18360cb3c18f0e35797 (patch)
tree67723a27c2b55e252da4accd3d0e9f0eb5b86f0e /.zshrc
parentb08a8db31fe8f331f4e615e818ca0e252750b6c4 (diff)
downloaddotfiles-d22f3a02d2a16efb8b96a18360cb3c18f0e35797.tar.gz
dotfiles-d22f3a02d2a16efb8b96a18360cb3c18f0e35797.tar.xz
zshrc: add more dirs to PATH
Signed-off-by: Florian Pritz <bluewind@xinu.at>
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
index df21372..dfa565b 100644
--- a/.zshrc
+++ b/.zshrc
@@ -7,6 +7,11 @@ ZDOTDIR="$HOME/.zsh"
export LANG=en_US.UTF-8
+# add extra dirs to path. allows to separate script bundles into dirs
+for _dir in $HOME/bin/extra/*(/N); do
+ export PATH=$_dir:$PATH
+done
+
export PATH=$HOME/bin:$PATH
if [[ -d $HOME/misc/scripts ]]; then
export PATH=${HOME}/misc/scripts:${PATH}