home · contact · privacy
5ee9ad81e0c813beee13d8c6d2cc41f1344b7a01
[config] / bullseye / home_files / minimal / .bashrc
1 # Settings for interactive shells.
2
3 # Fancy colors for ls.
4 alias ls="ls --color=auto"
5
6 # Use vim as default editor for anything.
7 export VISUAL=vim
8 export EDITOR=$VISUAL
9
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=~/.shell_prompt_color
13 if [ -f $colornumber_file ]; then
14     colornumber=`cat $colornumber_file`
15 fi
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\]"
22 fi
23 PS1="${tput_color}["\$\(date\ +%Y-%m-%d/%H:%M:%S/%Z\)" $(whoami)@$(hostname):"\$\(pwd\)"]$ $tput_reset"
24 PS2="${tput_color}> $tput_reset"
25 PS3="${tput_color}select: $tput_reset"
26 PS4="${tput_color}+ $tput_reset"