diff options
author | Jay Freeman <saurik@saurik.com> | 2008-01-27 22:40:02 +0000 |
---|---|---|
committer | Jay Freeman <saurik@saurik.com> | 2008-01-27 22:40:02 +0000 |
commit | 0b0258cf411a9427faadb078af3c1829e1ab81f7 (patch) | |
tree | 6a2b4cb67dbc75cdafd9590dc40d82da2ac7e810 /over/etc/profile | |
parent | 8d7781df05a1724c05f5231e463d26ea03578f96 (diff) |
Added support for most color options to /etc/profile.
git-svn-id: http://svn.telesphoreo.org/trunk@37 514c082c-b64e-11dc-b46d-3d985efe055d
Diffstat (limited to 'over/etc/profile')
-rw-r--r-- | over/etc/profile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/over/etc/profile b/over/etc/profile index f17e7548a..085b4261e 100644 --- a/over/etc/profile +++ b/over/etc/profile @@ -1,4 +1,16 @@ if [[ $TERM = network || -z $TERM ]]; then export TERM=xterm; fi + export PATH='/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/bin/X11:/usr/games' export PS1='\h:\w \u\$ ' + +alias ls="ls -Fb --color=auto -T 0" +eval $(dircolors) +alias less='less -R' +export CLICOLOR= + +export CVS_RSH=ssh +export RSYNC_RSH=ssh +export EDITOR=vim +export SVN_EDITOR=vim + umask 022 |