aboutsummaryrefslogtreecommitdiff
path: root/deploy.sh
blob: b76e531d247f3ef324593923e09049a999e162c6 (plain)
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
43
44
45
#!/bin/bash

set -e

rm -rf dotfiles-backup
mkdir -p dotfiles-backup

# deploy
if [ -z "$XDG_CONFIG_HOME" ];
then
    config_home="$HOME/.config"
else
    config_home="$XDG_CONFIG_HOME"
fi
cd xdg-config
for d in *
do
    dest="$config_home/$d"
    if [ -e "$dest" ]; then
        mv "$dest" ../dotfiles-backup/$d
    fi
    ln -sf "$(pwd)/$d" "$dest"
done
cd ..

for f in vimrc gvimrc gitconfig gitignore zshrc zsh dircolors.conf
do
    if [ -e ~/.${f} ]; then
        mv ~/.${f} dotfiles-backup/${f}
    fi
    ln -sf "$(pwd)/${f}" ~/.${f}
done

if [ ! -d ~/.vim/bundle/vundle ]; then
    git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
    cd ~/.vim/bundle/vundle
    git pull
    cd -
fi
vim +BundleInstall +qall
vim +BundleClean +qall

if [ ! -e ~/.zshrc-local ]; then
    cp zshrc-local ~/.zshrc-local
fi