summaryrefslogtreecommitdiffstats
path: root/.zshrc
diff options
context:
space:
mode:
Diffstat (limited to '.zshrc')
-rw-r--r--.zshrc5
1 files changed, 5 insertions, 0 deletions
diff --git a/.zshrc b/.zshrc
index 7004e8d..30e8af3 100644
--- a/.zshrc
+++ b/.zshrc
@@ -12,6 +12,11 @@ if [[ $TERM = "xterm-termite" ]]; then
export TERM=xterm-256color
fi
+# ruby gems
+for _dir in $HOME/.gem/ruby/*/bin; do
+ export PATH=$_dir:$PATH
+done
+
# add extra dirs/symlinks to path. allows to separate script bundles into dirs
for _dir in $HOME/bin/extra/*(/N,@N); do
export PATH=$_dir:$PATH