From b15f412107e5f3a8759aaab2d4ae77745649d067 Mon Sep 17 00:00:00 2001 From: Ismo Vuorinen Date: Tue, 22 Nov 2022 12:46:06 +0200 Subject: [PATCH] Added Ruby Gems bin to path --- zshrc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/zshrc b/zshrc index 2e0fb73..0c1ae48 100644 --- a/zshrc +++ b/zshrc @@ -14,9 +14,10 @@ COMPOSER_DIR="$HOME/.composer/vendor/bin" BREW_PYTHON=$(brew --prefix python@3.8)/bin GNUBIN_DIR=$(brew --prefix coreutils)/libexec/gnubin BREW_RUBY=$(brew --prefix ruby)/bin +BREW_GEMS=$(gem environment gemdir)/bin USR_SBIN=/usr/local/sbin -export PATH="$LOCAL_BIN:$PYTHON_38:$COMPOSER_DIR:$BREW_PYTHON:$GNUBIN_DIR:$BREW_RUBY:$USR_SBIN:$PATH" +export PATH="$LOCAL_BIN:$PYTHON_38:$COMPOSER_DIR:$BREW_PYTHON:$GNUBIN_DIR:$BREW_GEMS:$BREW_RUBY:$USR_SBIN:$PATH" source "$HOME/.config/antigen.zsh" export NVM_DIR="$HOME/.nvm"