18 lines
321 B
Bash
Executable File
18 lines
321 B
Bash
Executable File
#!/bin/sh
|
|
|
|
|
|
src=`pwd`
|
|
targ="$HOME/.vim"
|
|
|
|
# updated files
|
|
mkdir ~/.vim;
|
|
mkdir ~/.vim/bundle;
|
|
cp $src/.vimrc $HOME/.vimrc;
|
|
cp -r $src/colors $targ/colors;
|
|
cp -r $src/config $targ/config;
|
|
cp -r $src/snippets $targ/snippets;
|
|
|
|
# install Vundle
|
|
cd $targ/bundle;
|
|
git clone --depth=1 https://github.com/VundleVim/Vundle.vim.git;
|