De-crufted the .vimrc.
[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 # Put /usr/local/bin (where homebrew installs stuff) before /usr/bin on the
59 # path. This means that if a program exists at both locations, calls to that
60 # program will use the homebrew version rather than the system version.
61 PATH="/usr/local/bin:$PATH"
62 export PATH
63
64 # Run a machine-specific bashrc (if it exists).
65 if [ -f $HOME/.bashrc_local ]; then
66         source $HOME/.bashrc_local
67 fi
68
69 # Install RVM if it's not installed.
70 if [ ! -f $HOME/.rvm/scripts/rvm ]; then
71     bash -s stable < <(curl -s https://raw.github.com/wayneeseguin/rvm/master/binscripts/rvm-installer )
72 fi
73
74 # Load RVM into shell session.
75 [[ -s "$HOME/.rvm/scripts/rvm" ]] && . "$HOME/.rvm/scripts/rvm"
76
77 # Automatically open screen.
78 # The if statement prevents it from recursing (since screen opens bash).
79 if [ $TERM != screen ]; then
80         screen
81 fi