diff options
author | Florian Pritz <bluewind@xinu.at> | 2019-03-25 08:36:52 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2019-03-27 14:37:53 +0100 |
commit | cb1f001f67f4cffdb99459d656d020ee4cf00053 (patch) | |
tree | 14afc128c876a7066b321d7e8cbed6434a3b5b4d | |
parent | 6ec6bc7a01fb052c1a9be0603530297331a6915a (diff) | |
download | dotfiles-cb1f001f67f4cffdb99459d656d020ee4cf00053.tar.gz dotfiles-cb1f001f67f4cffdb99459d656d020ee4cf00053.tar.xz |
zshrc: Add ruby gems to PATH
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rw-r--r-- | .zshrc | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 |