|
1 # .bashrc: executed for non-login shells |
|
2 # probably sourced by .bash_profile though |
|
3 |
|
4 if [ -f ~/.bashrc.dist ]; then |
|
5 source ~/.bashrc.dist |
|
6 fi |
|
7 |
|
8 export EDITOR=vim |
|
9 export PERL_CPANM_OPT='-n --prompt --reinstall' |
|
10 |
|
11 if [ -d ~/bin ]; then |
|
12 export PATH="$HOME/bin:$PATH" |
|
13 fi |
|
14 |
|
15 if [ -d ~/.plenv ]; then |
|
16 export PATH="$HOME/.plenv/bin:$PATH" |
|
17 eval "$(plenv init -)" |
|
18 fi |
|
19 |
|
20 if [ -d ~/.rbenv ]; then |
|
21 export PATH="$HOME/.rbenv/bin:$PATH" |
|
22 eval "$(rbenv init -)" |
|
23 fi |
|
24 |
|
25 |
|
26 if [ -f ~/.bashrc.local ]; then |
|
27 source ~/.bashrc.local |
|
28 fi |
|
29 |