1 # Settings for interactive shells.
4 alias ls="ls --color=auto"
6 # Use vim as default editor for anything.
10 # Colored prompt with username, hostname, date/time, directory.
11 colornumber=7 # Default to white if no color set via colornumber dotfile.
12 colornumber_file=~/.shinit_color
13 if [ -f $colornumber_file ]; then
14 colornumber=`cat $colornumber_file`
16 tput_color="$(tput setaf $colornumber)$(tput bold)"
17 tput_reset="$(tput sgr0)"
18 # Bash confuses the line length when not told to not count escape sequences.
19 if [ ! "$BASH" = "" ]; then
20 tput_color="\[$tput_color\]"
21 tput_reset="\[$tput_reset\]"
23 PS1="${tput_color}["\$\(date\ +%Y-%m-%d/%H:%M:%S/%Z\)" $USER@$(hostname):"\$\(pwd\)"]$ $tput_reset"
24 PS2="${tput_color}> $tput_reset"
25 PS3="${tput_color}select: $tput_reset"
26 PS4="${tput_color}+ $tput_reset"
28 # Add local additions.
29 local_shinit_file=~/.shinit_add
30 if [ -f $local_shinit_file ]; then