#you must source this file
if ( $?tcsh ) then
	#complex prompt no color:
	#set prompt='\n%S%!\-%n@%M[%d,%T]\n(%~)%#%s '
	#complex prompt red on blue:
	#set prompt = '%{[44;31;1m%}%!\-%n@%M[%d,%T]%{[m%} \n%{[44;31;1m%}(%~)%#%{[m%} '
	#complex prompt yellow:
	#set prompt = '%{[40;33;1m%}%!\-%n@%M[%d,%T]%{[m%} \n%{[40;33;1m%}(%~)%#%{[m%} '
	#simple prompt no color:
	#set prompt="\n%n@%M\n(%~)%#"
	#simple prompt yellow on blue in first line:
	set prompt = '%{[44;33;1m%}%!\-%n@%M[%d,%T]%{[m%} \n%{[44;37;1m%}(%~)%#%{[m%} '
	alias cwdcmd 'ls -F --color=tty'
	setenv PAGER less
	alias l 'ls -F --color=tty'
	alias ll 'ls -al --color=tty'
	alias ls 'ls -F --color=tty'
endif
# define colors for different file names:
setenv LS_COLORS '*.fm=44;31;1:*.ppt=44;33;1:*.doc=44;33;1:*.tar=01;31:*.tgz=01;31:*.arj=01;31:*.taz=01;31:*.lzh=01;31:*.zip=01;31:*.z=01;31:*.Z=01;31:*.gz=01;31:*.bz2=01;31:*.deb=01;31:*.jpg=01;35:*.gif=01;35:*.bmp=01;35:*.ppm=01;35:*.tga=01;35:*.xbm=01;35:*.xpm=01;35:*.tif=01;35:*.mpg=01;37:*.avi=01;37:*.gl=01;37:*.dl=01;37:'

