2017-01-12 10:16:29 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
|
|
|
|
src=`pwd`
|
|
|
|
targ="$HOME/.vim"
|
|
|
|
|
|
|
|
# updated files
|
2017-01-24 12:40:21 +00:00
|
|
|
mkdir ~/.vim;
|
|
|
|
mkdir ~/.vim/bundle;
|
2017-01-12 10:16:29 +00:00
|
|
|
cp $src/.vimrc $HOME/.vimrc;
|
|
|
|
cp -r $src/colors $targ/colors;
|
|
|
|
cp -r $src/config $targ/config;
|
|
|
|
cp -r $src/snippets $targ/snippets;
|
2017-01-24 12:40:21 +00:00
|
|
|
|
|
|
|
# install Vundle
|
|
|
|
cd $targ/bundle;
|
|
|
|
git clone --depth=1 https://github.com/VundleVim/Vundle.vim.git;
|