# chezmoi:template:left-delimiter=#{{ #{{- /* vim: filetype=sh */ -}} #{{- if lookPath "rbenv" -}} # shellcheck shell=sh if [ "${RBENV_SHELL}" = "" ]; then eval "$(rbenv init -)" fi #{{- end }} #{{ if lookPath "rvm" -}} if [ -d "${HOME}/.rvm/bin" ]; then case "${PATH}" in *"$HOME/.rvm/bin"*) ;; *) export PATH="$PATH:$HOME/.rvm/bin" ;; esac fi if [ "$(ps -p $$ -ocomm=)" = sh ]; then if [ -f "$HOME/.rvm/scripts/rvm" ]; then # Load RVM into a shell session *as a function* # shellcheck disable=SC1091 . "$HOME/.rvm/scripts/rvm" fi fi #{{- end }}