-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME
More file actions
26 lines (21 loc) · 679 Bytes
/
README
File metadata and controls
26 lines (21 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/bin/sh
#If you have access to git:
#Installation:
git clone https://github.com/Jesin/dotvim ~/.vim
mkdir -p ~/.vim/bundle
git clone https://github.com/VundleVim/Vundle.vim ~/.vim/bundle/Vundle.vim
#Get the vimrc files in the right place:
cd ~/.vim
for x in vimrc gvimrc; do
if [ -e "~/.$x" ]; then
echo "runtime $x" | diff -q "~/.$x" - || exit "$?"
else
echo "runtime $x" > "~/.$x" || exit "$?"
fi
done
# Install and update plugins:
vim '+PluginUpdate'
#NOTE FOR SVN:
#If you want 'svn co' to produce a directory structure that is
#immediately usable in the way it would be after a 'git clone',
#then append /trunk to the URL of the git repository.