blob: 9e545ad4d5d613a749620dd3a5a47bc9625e2a55 (
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
#!/bin/bash
dir=~/dotfiles
olddir=~/dotfiles_old
rm -rf $olddir
mkdir -p $olddir
cd $dir
for file in `ls --ignore="make" --ignore="tex"`; do
echo "Symlinking $file"
mv ~/.$file $olddir
ln -s $dir/$file ~/.$file
done
# Symlink for neovim
rm ~/.nvim ~/.nvimrc
ln -s $dir/vim ~/.nvim
ln -s $dir/vimrc ~/.nvimrc
# Solarized
mkdir -p ~/.solarized
cd ~/.solarized
if [ ! -d ~/.solarized/mutt-colors-solarized ]; then
git clone https://github.com/altercation/mutt-colors-solarized/
else
cd mutt-colors-solarized
git pull origin master
fi
if [ ! -d ~/.solarized/gnome-terminal-colors-solarized ]; then
git clone https://github.com/Anthony25/gnome-terminal-colors-solarized/
else
cd ~/.solarized/gnome-terminal-colors-solarized
git pull origin master
fi
if [ ! -d ~/.solarized/dircolors-solarized ]; then
git clone https://github.com/seebi/dircolors-solarized/
else
cd ~/.solarized/dircolors-solarized
git pull origin master
fi
if [ ! -d ~/.vim/bundle ]; then
mkdir -p ~/.vim/bundle
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
else
cd ~/.vim/bundle/vundle
git pull origin master
fi
if [ ! -d ~/.tmux/plugins/tpm ]; then
mkdir -p ~/.tmux/plugins
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
else
cd ~/.tmux/plugins/tpm
git pull origin master
fi
mkdir -p $dir/mutt/temp
|