-
Notifications
You must be signed in to change notification settings - Fork 1
/
install.sh
executable file
·29 lines (22 loc) · 1.01 KB
/
install.sh
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
CURRENT_PATH=`pwd`
ln -sf $CURRENT_PATH/files/ackrc $HOME/.ackrc
ln -sf $CURRENT_PATH/files/ansible.cfg $HOME/.ansible.cfg
ln -sf $CURRENT_PATH/files/bash_profile $HOME/.bash_profile
ln -sf $CURRENT_PATH/files/caprc $HOME/.caprc
ln -sf $CURRENT_PATH/files/gemrc $HOME/.gemrc
ln -sf $CURRENT_PATH/files/gitconfig $HOME/.gitconfig
ln -sf $CURRENT_PATH/files/gitignore $HOME/.gitignore
ln -sf $CURRENT_PATH/files/inputrc $HOME/.inputrc
ln -sf $CURRENT_PATH/files/irbrc $HOME/.irbrc
ln -sf $CURRENT_PATH/files/npmrc $HOME/.npmrc
ln -sf $CURRENT_PATH/files/pryrc $HOME/.pryrc
ln -sf $CURRENT_PATH/files/tmux.conf $HOME/.tmux.conf
mkdir -p $HOME/bin
curl https://raw.github.com/paulhammond/webkit2png/master/webkit2png > $HOME/.bash/bin/webkit2png
chmod +x $HOME/.bash/bin/webkit2png
mkdir -p $HOME/.ssh
cp files/sshconfig $HOME/.ssh/config
sudo mkdir -p /etc/bash_completion
source $HOME/.bash_profile
defaults write com.apple.finder _FXShowPosixPathInTitle -bool YES
defaults write -g PMPrintingExpandedStateForPrint -bool TRUE