# This is the default standard .cshrc provided to csh users.
# They are expected to edit it to meet their own needs.
#
# The commands in this file are executed each time a new csh shell
# is started.
#
# $Revision: 1.2 $
#

# list directories in columns
alias ls 'ls -FC'

# Remember last 100 commands
set history = 100
set filec

# For interactive shells, set the prompt to show the host name and event number.
if ( (! $?ENVONLY) && $?prompt ) then
	if ( -o /bin/su ) then
		set prompt="`hostname -s` \!# "
	else
		set prompt="`hostname -s` \!% "
	endif
endif

#
# Settings for Jaleo
#
# Do not remove these settings, or you will jeopardize Jaleo operation


# Set file search path to the Jaleo directories
set path = ($HOME/JALEO-ENV/bin $HOME/JALEO-ENV/utils $HOME/JALEO-ENV/extern/license $HOME/JALEO-ENV/extern/license/daemon $path)

# Set X default search path
if ( $?XUSERFILESEARCHPATH ) then
	setenv XUSERFILESEARCHPATH "$XUSERFILESEARCHPATH":"$HOME/JALEO-ENV/etc/app-defaults/%N"
else
	setenv XUSERFILESEARCHPATH "$HOME/JALEO-ENV/etc/app-defaults/%N"
endif

# Limit Core Size
limit coredumpsize 1

