aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--bash/.bashrc3
1 files changed, 3 insertions, 0 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index abf2f3f..fa7d28a 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -53,6 +53,8 @@ fi
53# Erlang/Kerl 53# Erlang/Kerl
54KERL=`which kerl 2> /dev/null` 54KERL=`which kerl 2> /dev/null`
55if [ -x "$KERL" ]; then 55if [ -x "$KERL" ]; then
56 # kerl breaks the manpath
57 export MANPATH=$(grep manpath /etc/man.conf | awk '{ print $2 }' | paste -s -d:)
56 if [ -f $HOME/.config/bash_completions/kerl ]; then 58 if [ -f $HOME/.config/bash_completions/kerl ]; then
57 . $HOME/.config/bash_completions/kerl 59 . $HOME/.config/bash_completions/kerl
58 fi 60 fi
@@ -65,6 +67,7 @@ if [ -x "$KERL" ]; then
65 export KERL_CONFIGURE_OPTIONS="--without-javac --with-dynamic-trace=systemtap" 67 export KERL_CONFIGURE_OPTIONS="--without-javac --with-dynamic-trace=systemtap"
66 fi 68 fi
67fi 69fi
70
68if [ -d "$HOME/.virtualenvs/erlang" ]; then 71if [ -d "$HOME/.virtualenvs/erlang" ]; then
69 . ~/.virtualenvs/erlang/activate 72 . ~/.virtualenvs/erlang/activate
70fi 73fi