blob: f266ddf92c5d33c839090dbf6751a3393014c5fe (
plain) (
blame)
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/sh -e
dotfiles=$(pwd)
# make sure all submodules are there
git submodule update --init --recursive
# [zsh]
ln -sf "$dotfiles/shell/_zshrc" "$HOME/.zshrc"
ln -sfT "$dotfiles/shell/_oh-my-zsh" "$HOME/.oh-my-zsh"
ln -sfT "$dotfiles/shell/themes" "$HOME/.oh-my-zsh/custom/themes"
# [vim]
ln -sf "$dotfiles/shell/_vimrc" "$HOME/.vimrc"
ln -sfT "$dotfiles/shell/_vim" "$HOME/.vim"
# [git]
ln -sf "$dotfiles/shell/_gitconfig" "$HOME/.gitconfig"
# [tmux]
ln -sf "$dotfiles/shell/_tmux.conf" "$HOME/.tmux.conf"
# [gdb]
ln -sf "$dotfiles/shell/_gdbinit" "$HOME/.gdbinit"
# [gpg]
ln -sfT "$dotfiles/shell/_gnupg" "$HOME/.gnupg"
# [emacs]
ln -sfT "$dotfiles/shell/_emacs.d" "$HOME/.emacs.d"
if [ "$1" = "arch" ]; then
echo "Performing full installation."
# [arch linux]
ln -sf "$dotfiles/shell/_makepkg.conf" "$HOME/.makepkg.conf"
# [email]
ln -sfT "$dotfiles/email/_mutt" "$HOME/.mutt"
ln -sf "$dotfiles/email/_offlineimaprc" "$HOME/.offlineimaprc"
ln -sf "$dotfiles/email/_msmtprc" "$HOME/.msmtprc"
mkdir -p ~/.mail
fi
echo "Finished installing dotfiles"
|