blob: b66b0d6201ff2fb0e946c14296b046f89e164175 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
#!/bin/bash
set -e
rm -rf dotfiles-backup
mkdir -p dotfiles-backup
# deploy
for f in vimrc gvimrc gitconfig gitignore zshrc zsh vim dircolors.conf slate
do
if [ -e ~/.${f} ]; then
mv ~/.${f} dotfiles-backup/${f}
fi
ln -sf `pwd`/${f} ~/.${f}
done
if [ ! -e ~/.zshrc-local ]; then
cp zshrc-local ~/.zshrc-local
fi
|