aboutsummaryrefslogtreecommitdiff
path: root/deploy.sh
blob: 4f55677811628f4c629df2c8a4fc7652cea940ca (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
#!/bin/bash

set -e

# template git profile
echo "enter your global git user name:"
read name
echo "enter your global git e-mail:"
read email

sed -e "s|#NAME#|$name|" -e "s|#EMAIL#|$email|" gitconfig.template > gitconfig

# deploy
for f in vimrc gitconfig gitignore mostrc zshrc
do
    cp $f ~/.${f}
done

cp oh-my-zsh/svn.zsh ~/.oh-my-zsh/lib/svn.zsh
cp oh-my-zsh/xcolour.zsh-theme ~/.oh-my-zsh/themes/xcolour.zsh-theme

mkdir -p ~/.vim
cp -r vim/* ~/.vim

# clean-up
rm gitconfig