55 lines
1016 B
Plaintext
55 lines
1016 B
Plaintext
export GIT_AUTHOR_NAME='Jeff Carr'
|
|
export GIT_COMMITTER_NAME='Jeff Carr'
|
|
export GIT_COMMITTER_EMAIL='jcarr@wit.com'
|
|
export GIT_USER=jcarr
|
|
export GIT_AUTHOR_EMAIL='jcarr@wit.com'
|
|
export LC_EXTRA_USER=jcarr
|
|
export LC_USER=jcarr
|
|
|
|
# export PS1='\h:\w\$ '
|
|
umask 022
|
|
|
|
unset PAGER
|
|
set +o ignoreeof
|
|
export LS_OPTIONS='--color=auto'
|
|
eval `dircolors`
|
|
alias ls='ls $LS_OPTIONS'
|
|
alias ll='ls $LS_OPTIONS -lh'
|
|
alias lf='ls $LS_OPTIONS -aCF'
|
|
alias l='ls $LS_OPTIONS -lA'
|
|
#
|
|
# Some more alias to avoid making mistakes:
|
|
alias rm='rm -i'
|
|
alias cp='cp -i'
|
|
alias mv='mv -i'
|
|
|
|
alias pa='ps auxwH -L kstart_time'
|
|
alias psc='ps xawf -eo pid,user,cgroup,args'
|
|
alias reattach='screen -d -A -R jcarr'
|
|
|
|
PATH=$PATH:/sbin:/usr/sbin:~/go/bin:/usr/games
|
|
|
|
export LANG=C
|
|
export LANGUAGE=C
|
|
export LC_ALL=C
|
|
|
|
# setterm -blength 0
|
|
|
|
if [ $DISPLAY ] ; then
|
|
xset b off
|
|
fi
|
|
|
|
export EDITOR=vim
|
|
|
|
stty -echoctl
|
|
|
|
unset VIMINIT
|
|
|
|
export EDITOR=vim
|
|
# export PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
|
|
|
# if [ -f ~/.jcarr ]; then
|
|
# . ~/.jcarr
|
|
# fi
|
|
|