Added bad whitespace highlighting.
[dotfiles] / .bashrc
1 # ~/.bashrc: executed by bash(1) for non-login shells.
2
3 # If not running interactively, don't do anything
4 [ -z "$PS1" ] && return
5
6 # don't put duplicate lines in the history. See bash(1) for more options
7 # don't overwrite GNU Midnight Commander's setting of `ignorespace'.
8 export HISTCONTROL=$HISTCONTROL${HISTCONTROL+,}ignoredups
9 # ... or force ignoredups and ignorespace
10 export HISTCONTROL=ignoreboth
11
12 # append to the history file, don't overwrite it
13 shopt -s histappend
14
15 # for setting history length see HISTSIZE and HISTFILESIZE in bash(1)
16
17 # check the window size after each command and, if necessary,
18 # update the values of LINES and COLUMNS.
19 shopt -s checkwinsize
20
21 # make less more friendly for non-text input files, see lesspipe(1)
22 [ -x /usr/bin/lesspipe ] && eval "$(SHELL=/bin/sh lesspipe)"
23
24 # set the prompt
25 PS1='\w\$ '
26
27 # enable color support of ls and also add handy aliases
28 if [ -x /usr/bin/dircolors ]; then
29     eval "`dircolors -b`"
30     alias ls='ls --color=auto'
31     alias dir='dir --color=auto'
32     alias vdir='vdir --color=auto'
33
34     alias grep='grep --color=auto'
35     alias fgrep='fgrep --color=auto'
36     alias egrep='egrep --color=auto'
37 fi
38
39 alias emacs='emacs -nw'
40 alias serve='python -m SimpleHTTPServer 8080'
41
42 export SVN_EDITOR=vim
43
44 # Enable programmable completion features (you don't need to enable
45 # this, if it's already enabled in /etc/bash.bashrc and /etc/profile
46 # sources /etc/bash.bashrc).
47 if [ -f /etc/bash_completion ]; then
48     . /etc/bash_completion
49 fi
50
51 # Add the ~/bin directory to the path.  This allows you to install simple
52 # binaries by simply moving them into ~/bin.
53 if [ -d $HOME/bin ]; then
54         PATH="$HOME/bin:$PATH"
55         export PATH
56 fi
57
58 # Run a machine-specific bashrc (if it exists).
59 if [ -f $HOME/.bashrc_local ]; then
60         source $HOME/.bashrc_local
61 fi
62
63 # Automatically open screen.
64 # The if statement prevents it from recursing (since screen opens bash).
65 if [ $TERM != screen ]; then
66         screen
67 fi