summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFlorian Pritz <bluewind@xinu.at>2019-03-25 08:36:52 +0100
committerFlorian Pritz <bluewind@xinu.at>2019-03-27 14:37:53 +0100
commitcb1f001f67f4cffdb99459d656d020ee4cf00053 (patch)
tree14afc128c876a7066b321d7e8cbed6434a3b5b4d
parent6ec6bc7a01fb052c1a9be0603530297331a6915a (diff)
downloaddotfiles-cb1f001f67f4cffdb99459d656d020ee4cf00053.tar.gz
dotfiles-cb1f001f67f4cffdb99459d656d020ee4cf00053.tar.xz
zshrc: Add ruby gems to PATH
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-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