7 lines
210 B
Text
7 lines
210 B
Text
|
|
# shellcheck shell=bash
|
||
|
|
# Set up rbenv (Ruby version manager)
|
||
|
|
# Disabled by default (chmod +x to enable)
|
||
|
|
path_prepend "$HOME/.rbenv/bin"
|
||
|
|
if command -v rbenv &>/dev/null; then
|
||
|
|
eval "$(rbenv init - bash)"
|
||
|
|
fi
|