root/env/.commonenv

Revision 70, 0.8 kB (checked in by devja..@anarkystic.com, 10 months ago)

rar

Line 
1 #   
2 #   termie's common environment stuffs
3 #
4
5 # grab the platform details
6 export T_PLATFORM=`uname`
7 export T_HOST=`hostname`
8
9 # check for textdrive
10 if [ `echo $T_HOST | awk "/textdrive/ { print 1 }"` ]; then
11     export T_TEXTDRIVE=1
12 fi
13
14
15 ## python
16 if [ -f "$HOME/.pyrc" ]; then
17     export PYTHONSTARTUP=$HOME/.pyrc
18 fi
19
20 ## perl
21 export PERL5LIB=$HOME/lib/perl5.8.6
22
23 ## gcc
24 export CCACHE_DIR=$HOME/.ccache
25
26 ## source control stuff
27 export CVS_MOZ=:pserver:anonymous@cvs-mirror.mozilla.org:/cvsroot
28
29
30 ## defaults
31 export PATH=$HOME/bin:$HOME/bin/$T_PLATFORM:/sw/bin:/usr/local/bin:/opt/local/bin:$PATH
32 export PAGER=less
33 export EDITOR=vim
34 export CLICOLOR=1
35 export RSYNC_RSH=ssh
36
37 # maybe have some way to determine whether we should set this...
38 export FTP_PASSIVE=1
39
40
41 # jaiku stuff
42 [ -f "$HOME/.jaikuenv" ] && source $HOME/.jaikuenv
43
Note: See TracBrowser for help on using the browser.