19 lines
243 B
Bash
Executable File
19 lines
243 B
Bash
Executable File
#!/bin/sh
|
|
|
|
BASEDIR=`dirname $0`
|
|
|
|
# submodule init
|
|
git submodule update --init
|
|
|
|
#
|
|
cp ${BASEDIR}/.inputrc ~/
|
|
|
|
#
|
|
cp ${BASEDIR}/.profile ~/
|
|
cp ${BASEDIR}/.bashrc ~/
|
|
|
|
# vim
|
|
cp ${BASEDIR}/.vimrc ~/
|
|
mkdir -p ~/.vim/
|
|
rsync -a ${BASEDIR}/.vim/ ~/.vim/
|