Skip to content

Commit

Permalink
Merge branch 'master' of github.com:seantalts/dotfiles
Browse files Browse the repository at this point in the history
Conflicts:
	_bashrc
	_vim/bundle/command-t
	_vim/bundle/fugitive
  • Loading branch information
Sean Talts committed Sep 18, 2011
2 parents 8af9d26 + 938fe33 commit ea8fa49
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions _bashrc
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ if $TERM_IS_COLOR && ( dircolors --help && ls --color ) &> /dev/null; then
[[ -f "$POSSIBLE_DIR_COLORS" ]] && [[ -r "$POSSIBLE_DIR_COLORS" ]] && eval `dircolors -b "$POSSIBLE_DIR_COLORS"` && break
done

alias ls="ls --color=auto"
alias ll="ls --color=auto -l"
alias ls="ls --color=auto -F "
alias ll="ls --color=auto -l -F"
alias grep='grep --color=auto'
alias fgrep='fgrep --color=auto'
alias egrep='egrep --color=auto'
Expand Down Expand Up @@ -131,11 +131,9 @@ if [ -x "/Applications/MacVim.app/Contents/MacOS/Vim" ]; then
PATH=/Applications/MacVim.app/Contents/MacOS/:$PATH
fi

PATH=/usr/local/sbin:$PATH:/usr/local/mysql/bin
PATH=~/bin:/usr/local/sbin:$PATH:/usr/local/mysql/bin
export PATH



PYTHONSTARTUP=~/.pythonrc.py
export PYTHONSTARTUP

Expand All @@ -160,8 +158,8 @@ PS1="${TITLEBAR} \[\033[0;36m\]\$(parse_git_branch)\[\033[00m\] $ "
}
proml

EDITOR='vim'

if [ -e ~/.git-completion.bash ]; then
source ~/.git-completion.bash
fi

export EDITOR=vim

0 comments on commit ea8fa49

Please sign in to comment.