-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sh
executable file
·42 lines (39 loc) · 1.17 KB
/
install.sh
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/bin/zsh
cutstring="DO NOT EDIT BELOW THIS LINE"
for name in *; do
target="$HOME/.$name"
if [ -e $target ]; then
if [[ ! -L $target && ! -d $target ]]; then
cutline=`grep -n -m1 "$cutstring" "$target" | sed "s/:.*//"`
if [[ -n $cutline ]]; then
let "cutline = $cutline - 1"
echo "Updating $target"
head -n $cutline "$target" > update_tmp
startline=`cat -n "$name" | sort -nr | cut -c8- | grep -n -m1 "$cutstring" | sed "s/:.*//"`
if [[ -n $startline ]]; then
tail -n $startline "$name" >> update_tmp
else
cat "$name" >> update_tmp
fi
mv update_tmp "$target"
else
echo "WARNING: $target exists but is not a symlink."
fi
fi
else
if [[ $name != 'install.sh' ]]; then
echo "Creating $target"
if [[ -n `grep "$cutstring" "$name"` ]]; then
cp "$PWD/$name" "$target"
else
ln -sf "$PWD/$name" "$target"
fi
fi
fi
done
if [ ! -d "$HOME/.vim/bundle" ]; then
echo "Installing Vundle"
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
mkdir -p ~/.vim/backup
vim +PluginInstall +qall
fi