From cb1f001f67f4cffdb99459d656d020ee4cf00053 Mon Sep 17 00:00:00 2001 From: Florian Pritz Date: Mon, 25 Mar 2019 08:36:52 +0100 Subject: zshrc: Add ruby gems to PATH Signed-off-by: Florian Pritz --- .zshrc | 5 +++++ 1 file changed, 5 insertions(+) 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 -- cgit v1.2.3-24-g4f1b