aboutsummaryrefslogtreecommitdiffstats
path: root/bash
diff options
context:
space:
mode:
authorjason2023-09-08 16:39:39 -0600
committerjason2023-09-08 16:39:39 -0600
commit8248b352ca5edd27f02866095aee092b2adcc356 (patch)
treec486171b3ae6613a0a7bc1c904bced092c1ba375 /bash
parent855354ac56c29ca5d7fa73d4bcf0d592ef494ea8 (diff)
downloaddotfiles-8248b352ca5edd27f02866095aee092b2adcc356.tar.gz
dotfiles-8248b352ca5edd27f02866095aee092b2adcc356.zip
updates for freebsd
Diffstat (limited to 'bash')
-rw-r--r--bash/.bashrc8
1 files changed, 7 insertions, 1 deletions
diff --git a/bash/.bashrc b/bash/.bashrc
index 4d9ecff..410cba8 100644
--- a/bash/.bashrc
+++ b/bash/.bashrc
@@ -57,7 +57,9 @@ if [ -x $KERL ]; then
57 export KERL_CONFIGURE_OPTIONS="--without-javac --with-dynamic-trace=systemtap" 57 export KERL_CONFIGURE_OPTIONS="--without-javac --with-dynamic-trace=systemtap"
58 fi 58 fi
59fi 59fi
60source ~/.virtualenvs/erlang/activate 60if [ -d $HOME/.virtualenvs/erlang ]; then
61 source ~/.virtualenvs/erlang/activate
62fi
61ERL=`which erl` 63ERL=`which erl`
62if [ -x $ERL ]; then 64if [ -x $ERL ]; then
63 # +pc unicode Output strings as unicode by default 65 # +pc unicode Output strings as unicode by default
@@ -145,6 +147,10 @@ if [ -x /opt/homebrew/bin/pyenv ]; then
145 eval "$(pyenv init --path)" 147 eval "$(pyenv init --path)"
146 eval "$(pyenv init -)" 148 eval "$(pyenv init -)"
147fi 149fi
150if [ -x /usr/local/bin/pyenv ]; then
151 # FreeBSD, probably linux
152 eval "$(pyenv init -)"
153fi
148 154
149__workon() { 155__workon() {
150 source ~/.virtualenvs/$1/bin/activate 156 source ~/.virtualenvs/$1/bin/activate