summaryrefslogtreecommitdiffstats
path: root/zshrc
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2017-01-16 06:46:11 -0500
committerJesse Luehrs <doy@tozt.net>2017-01-21 06:37:31 -0500
commit941601ba04bc3abc64f7c0a385f0d78f89d3d1e4 (patch)
tree0b9416d96e6bdc6817b783f735343d9abb0890ad /zshrc
parent7b5eaece5605d6fe8e8b3031b30e9493f167e09d (diff)
downloadconf-941601ba04bc3abc64f7c0a385f0d78f89d3d1e4.tar.gz
conf-941601ba04bc3abc64f7c0a385f0d78f89d3d1e4.zip
also move language environment setup out of .env
Diffstat (limited to 'zshrc')
-rw-r--r--zshrc4
1 files changed, 4 insertions, 0 deletions
diff --git a/zshrc b/zshrc
index 8e91ea8..2b0ffe8 100644
--- a/zshrc
+++ b/zshrc
@@ -4,6 +4,10 @@
export PATH="/usr/share/git/diff-highlight:${HOME}/.bin/nethack:${HOME}/.bin:/usr/lib/ccache/bin:$PATH"
[ -f "$HOME/.env" ] && source $HOME/.env
# }}}
+# language environments {{{
+test -f $HOME/perl5/perlbrew/etc/bashrc && source $HOME/perl5/perlbrew/etc/bashrc
+type rbenv > /dev/null 2>&1 && eval "$(rbenv init -)"
+# }}}
# Change the window title of X terminals {{{
function term_title_precmd () {
echo -ne "\033]0;${USER}@${HOST}:${PWD/$HOME/~}\007"