# tab-completion: list possibilities set autolist # command history: keep only last entry for each command set histdup=erase # configure ls # colors for dark background (search LS_COLORS in man page for details) setenv LS_COLORS 'di=00;36:ln=04;36:ex=00;32' # display human readable file-size and use colors alias ls 'ls -h --color=auto' alias l 'ls -l' # ask before doing dangerous things alias rm 'rm -i' alias cp 'cp -i' alias mv 'mv -i' # other nice alias alias . 'source' alias root 'root -l'