Mercurial > pkg
diff defaults/profile @ 8:7b9d471fc1d3
create C wrapper and move bashrc to profile.
author | Robert McIntyre <rlm@mit.edu> |
---|---|
date | Tue, 08 Jan 2013 18:13:48 +0000 |
parents | defaults/bashrc@ab4011ea1463 |
children | e056798af879 |
line wrap: on
line diff
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000 1.2 +++ b/defaults/profile Tue Jan 08 18:13:48 2013 +0000 1.3 @@ -0,0 +1,33 @@ 1.4 +#!/bin/bash 1.5 +set +h 1.6 + 1.7 +export PATH=\ 1.8 +"/home/r/system/usr/bin:\ 1.9 +/sbin/:\ 1.10 +/bin:\ 1.11 +/usr/sbin:\ 1.12 +/usr/bin:\ 1.13 +/tools/bin" 1.14 + 1.15 +alias ls="/usr/bin/env ls --color=auto " 1.16 +export ls 1.17 +alias la="ls -la" 1.18 +export la 1.19 + 1.20 +# some personal shortcuts 1.21 +alias r="reset" 1.22 +export r 1.23 +alias sl=ls 1.24 +export sl 1.25 +alias l=ls 1.26 +export l 1.27 + 1.28 +colors="/etc/dircolors" 1.29 +eval $(dircolors -b $colors) 1.30 +unset colors 1.31 + 1.32 +export HGEDITOR="emacs" 1.33 + 1.34 +alias hg="~/.hg-wrapper" 1.35 + 1.36 +PS1="\[$(tput setaf 3)\][\u \w] # \[$(tput sgr0)\]"