#!/bin/sh BASEDIR=`dirname $0` # umask 077 # submodule init git submodule update --init # cp ${BASEDIR}/.inputrc ~/ # cp ${BASEDIR}/.bash_profile ~/ cp ${BASEDIR}/.bashrc ~/ cp ${BASEDIR}/.zshrc ~/ if [ ! -e ~/.bashrc ]; then cp ${BASEDIR}/.bashrc.local ~/ fi if [ ! -e ~/.zshrc.local ]; then cp ${BASEDIR}/.zshrc.local ~/ fi # if [ ! -e ~/.screenrc ]; then cp ${BASEDIR}/.screenrc ~/ fi cp ${BASEDIR}/.tmux.conf ~/ # cp ${BASEDIR}/.gitconfig ~/ if [ ! -e ~/.gitconfig.local ]; then cp ${BASEDIR}/.gitconfig.local ~/ fi # cp ${BASEDIR}/.gdbinit ~/ # cp ${BASEDIR}/.wgetrc ~/ # vim mkdir -p ~/.vim/ rsync -a ${BASEDIR}/.vim/ ~/.vim/ chmod 700 ~/.vim/ vim +BundleClean\! +BundleInstall +q +q