#
# /etc/profile - bash(1) defaults
#

# Set a complete path
PATH="/bin:/sbin:/usr/bin:/usr/sbin:\
/usr/local/bin:/usr/local/sbin:/usr/games"

# Make a nice bash prompt
PS1='[\u@\h:\W]\$ '

# Less charset setting
LESSCHARSET="utf-8"

# Default editor for mutt and more
EDITOR="nano"
VISUAL="nano"

# Locale settings
LANG="en_GB.utf8"
LC_ALL="en_GB.utf8"

# Export the variables
export PATH PS1 LESSCHARSET EDITOR VISUAL LANG LC_ALL

# Some settings
umask 022
ulimit -c 0

if [ "$TERM" = linux -a "`/sbin/consoletype`" = "vt" ]; then
	/usr/bin/unicode_start
fi
# EOF
