[BASH] Add Ruby Gems paths into bashrc

This commit is contained in:
Gregory Trolliet 2023-09-10 09:38:22 +02:00
parent 5239325830
commit 72d5f5dbbe
1 changed files with 3 additions and 0 deletions

View File

@ -218,3 +218,6 @@ export PATH="$HOME/.cargo/bin:$PATH"
export PATH="$HOME/.local/bin:$PATH":
export EDITOR='vim'
# Install Ruby Gems to ~/gems
export GEM_HOME="$HOME/gems"
export PATH="$HOME/gems/bin:$PATH"