summaryrefslogtreecommitdiff
path: root/deploy.sh
blob: 632c61cd3107779d7052005004169f37543e0c82 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#!/bin/sh

set -ex

CONFIG_DIR=${HOME}/config

ln -sf ${CONFIG_DIR}/bashrc ${HOME}/.bashrc

ln -sf ${CONFIG_DIR}/vim ${HOME}/.vim
ln -sf ${CONFIG_DIR}/vimrc ${HOME}/.vimrc

ln -sf ${CONFIG_DIR}/inputrc ${HOME}/.inputrc

ln -sf ${CONFIG_DIR}/screenrc ${HOME}/.screenrc

ln -sf ${CONFIG_DIR}/git/gitconfig ${HOME}/.gitconfig
mkdir -p ${HOME}/.git_template
ln -sf ${CONFIG_DIR}/git/hooks ${HOME}/.git_template/hooks

mkdir -p ${HOME}/.mutt
ln -sf ${CONFIG_DIR}/muttrc ${HOME}/.mutt/muttrc

ln -sf ${CONFIG_DIR}/ripgreprc ${HOME}/.ripgreprc