|
Revision 3, 0.6 kB
(checked in by devja..@anarkystic.com, 1 year ago)
|
sendin the env down the rivarr
|
| Line | |
|---|
| 1 |
# |
|---|
| 2 |
# termie's common interactive stuffs |
|---|
| 3 |
# |
|---|
| 4 |
|
|---|
| 5 |
## make sure the erase key is always set to ^H |
|---|
| 6 |
stty erase |
|---|
| 7 |
|
|---|
| 8 |
|
|---|
| 9 |
# linux stuff |
|---|
| 10 |
if [ $T_PLATFORM = "Linux" ]; then |
|---|
| 11 |
[ -f "$HOME/.linuxrc" ] && source $HOME/.linuxrc |
|---|
| 12 |
fi |
|---|
| 13 |
|
|---|
| 14 |
# darwin stuff |
|---|
| 15 |
if [ $T_PLATFORM = "Darwin" ]; then |
|---|
| 16 |
[ -f "$HOME/.darwinrc" ] && source $HOME/.darwinrc |
|---|
| 17 |
fi |
|---|
| 18 |
|
|---|
| 19 |
# freebsd stuff |
|---|
| 20 |
if [ $T_PLATFORM = "FreeBSD" ]; then |
|---|
| 21 |
[ 0 ] |
|---|
| 22 |
fi |
|---|
| 23 |
|
|---|
| 24 |
|
|---|
| 25 |
# the .pathrc file is not version controlled in the |
|---|
| 26 |
# same place so this is used as a system specific |
|---|
| 27 |
# set of path overrides |
|---|
| 28 |
[ -f "$HOME/.pathrc" ] && source $HOME/.pathrc |
|---|
| 29 |
|
|---|
| 30 |
# i think localrc is nicer sounding, eh? |
|---|
| 31 |
[ -f "$HOME/.localrc" ] && source $HOME/.localrc |
|---|
| 32 |
|
|---|