blob: 30891b3800d024866d969ac488d9588b2e841b52 (
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
|
#!/bin/bash
dir=~/dotfiles
olddir=~/dotfiles_old
# Files to sync
files="vim vimrc mutt passwords vifm msmtprc bashrc zshrc xmodmap mynotes tmux.conf zathurarc offlineimaprc offlineimap.py inputrc latexmkrc crontab gitconfig git_template tmuxlinerc"
rm -rf $olddir
mkdir -p $olddir
cd $dir
chmod 600 msmtprc
for file in $files; do
echo $file
mv ~/.$file $olddir
ln -s $dir/$file ~/.$file
done
# Symlink for neovim
ln -s $dir/vim ~/.nvim
ln -s $dir/vimrc ~/.nvimrc
# Solarized
cd
rm -rf .solarized
mkdir .solarized
cd .solarized
git clone https://github.com/altercation/mutt-colors-solarized
git clone https://github.com/Anthony25/gnome-terminal-colors-solarized/
git clone https://github.com/seebi/dircolors-solarized
cd
rm -rf .vim/bundle
mkdir .vim/bundle
git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle
vim +PluginInstall +qall
cd $dir
cd mutt
mkdir temp
# Tmux
cd
rm -rf .tmux
git clone https://github.com/tmux-plugins/tpm ~/.tmux/plugins/tpm
tmux source-file ~/.tmux.conf
|