2011-12-29 10:23:18 +01:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
# Do not use this script unless you know what you are doing!
|
|
|
|
cat bashrc > ~/.bashrc
|
|
|
|
cat tmux.conf > ~/.tmux.conf
|
|
|
|
cat zshrc > ~/.zshrc
|
2011-12-31 20:28:31 +01:00
|
|
|
#cat gitconfig > ~/.gitconfig # I usually do not want this to be overridden so much.
|
2011-12-31 20:40:19 +01:00
|
|
|
cat vimrc > ~/.vimrc
|
2012-03-27 11:50:22 +02:00
|
|
|
#gpg --keyserver hkp://pool.sks-keyservers.net --recv-keys A4271AC5 # Run gpg once to get configuration file and keyrings.
|
2012-03-22 13:48:15 +01:00
|
|
|
#cat gpg.conf > ~/.gnupg/gpg.conf # Maybe this shouldn't get replaced so much, since it contains my key ids.
|
2012-01-10 16:42:12 +01:00
|
|
|
exec $SHELL
|
2011-12-31 20:40:19 +01:00
|
|
|
|
2012-01-10 16:42:12 +01:00
|
|
|
# vim : set ft=sh :
|