aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthew Lemon <y@yulqen.org>2023-04-18 17:01:52 +0100
committerMatthew Lemon <y@yulqen.org>2023-04-18 17:01:52 +0100
commitb43a6b4a28d0c564d7e663cd43b9ee73a0b110fd (patch)
tree74917d26cba5387fb2950e7fbc8e9f21b49af907
parentcd1ca2c0fd1d151f8495182e8ce9fded76bf662a (diff)
Adds gem and ruby binary PATH config
Diffstat (limited to '')
-rw-r--r--bashrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/bashrc b/bashrc
index 64226f9..2716a10 100644
--- a/bashrc
+++ b/bashrc
@@ -146,3 +146,7 @@ append_to_masterlist() {
# Colors for ls - yellow directories
# export LS_COLORS="$LS_COLORS:di=1;33"
+# Install Ruby Gems to ~/gems
+export GEM_HOME="$HOME/gems"
+export PATH="$HOME/gems/bin:$PATH"
+export PATH="$HOME/.local/share/gem/ruby/3.0.0/bin:$PATH"