60 lines
1.1 KiB
Bash
60 lines
1.1 KiB
Bash
export PS1='\h:\w\$ '
|
|
umask 022
|
|
|
|
# unalias screen
|
|
# alias screen='screen -A -R jcarr'
|
|
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'
|
|
|
|
PATH=$PATH:/sbin:/usr/sbin:/usr/games:~/bin
|
|
|
|
export LANG=C
|
|
export LANGUAGE=C
|
|
export LC_ALL=C
|
|
|
|
if [ "x$TERM" = "x" ]
|
|
then
|
|
setterm -blength 0
|
|
fi
|
|
|
|
#if [ $DISPLAY ] ; then
|
|
# xset b off
|
|
#fi
|
|
|
|
alias rscp="rsync -av --progress --inplace"
|
|
export PS1='${debian_chroot:+($debian_chroot)}\u@\h:\w\$ '
|
|
export EDITOR=vim
|
|
|
|
if [ "x$TERM" = "x" ]
|
|
then
|
|
stty -echoctl
|
|
fi
|
|
|
|
unset VIMINIT
|
|
|
|
export DEBEMAIL="Jeff Carr <jcarr@linuxmachines.com>"
|
|
|
|
export GIT_AUTHOR_NAME="Jeff Carr"
|
|
export GIT_AUTHOR_EMAIL="jcarr@linuxmachines.com"
|
|
export GIT_COMMITTER_NAME="Jeff Carr"
|
|
export GIT_COMMITTER_EMAIL="jcarr@linuxmachines.com"
|
|
export GIT_USER="jcarr"
|
|
export LC_USER="jcarr"
|
|
export LC_EXTRA_USER=jcarr
|
|
|
|
export EDITOR=vim
|