#!/bin/bash
if [ -d ~/.plenv ]; then
export PATH="$HOME/.plenv/bin:$PATH"
eval "$( plenv init - )"
fi
if [ -d ~/.rbenv ]; then
export PATH="$HOME/.rbenv/bin:$PATH"
eval "$( rbenv init - )"
fi
if [ -r ~/.xsessionrc.local ]; then
. ~/.xsessionrc.local
fi