Conflicts:
	.gitignore
	templates/zshrc.zsh-template
	tools/install.sh
This commit is contained in:
Gaetan Semet 2013-03-04 16:54:51 +01:00
commit baa421cbae
10 changed files with 124 additions and 16 deletions

View file

@ -0,0 +1,2 @@
# Initialize pythonbrew if installed
[[ -s $HOME/.pythonbrew/etc/bashrc ]] && source $HOME/.pythonbrew/etc/bashrc

View file

@ -0,0 +1 @@
alias tmux="tmux -u2"

View file

@ -0,0 +1,7 @@
# try to replace OSX's default vim by MacVim's version
RECENTVIM=`test -e /usr/local/Cellar/macvim && find /usr/local/Cellar/macvim -name Vim`
# if mode indicator wasn't setup by theme, define default
if [[ "$OSTYPE" == darwin* && -e $RECENTVIM ]]; then
alias vim="$RECENTVIM"
fi