-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.sh
More file actions
25 lines (20 loc) · 743 Bytes
/
Copy pathsetup.sh
File metadata and controls
25 lines (20 loc) · 743 Bytes
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
#!/bin/bash
# By default, let's quit right away.
exit 1
# Assuming we've checked out this repo under ~/dotfiles
# we can then copy/paste the desired symlinks below into
# another terminal. I've grouped them roughly in order
# of importance.
ln -sf ~/dotfiles/bash_profile ~/.bash_profile
ln -sf ~/dotfiles/bashrc ~/.bashrc
ln -sf ~/dotfiles/bash_aliases ~/.bash_aliases
ln -sf ~/dotfiles/inputrc ~/.inputrc
ln -sf ~/dotfiles/gitconfig ~/.gitconfig
ln -sf ~/dotfiles/gitignore ~/.gitignore
ln -sf ~/dotfiles/vim ~/.vim
ln -sf ~/dotfiles/tmux.conf ~/.tmux.conf
ln -sf ~/dotfiles/screenrc ~/.screenrc
ln -sf ~/dotfiles/ackrc ~/.ackrc
ln -sf ~/dotfiles/condarc ~/.condarc
ln -sf ~/dotfiles/urlview ~/.urlview
ln -sf ~/dotfiles/tigrc ~/.tigrc