22 lines
460 B
Bash
Executable file
22 lines
460 B
Bash
Executable file
#!/bin/bash
|
|
|
|
cd ~
|
|
|
|
rm -f .profile
|
|
rm -f .bashrc
|
|
ln -s ~/Code/config/profile .profile
|
|
ln -s ~/Code/config/bashrc .bashrc
|
|
|
|
rm -f .screenrc
|
|
ln -s ~/Code/config/screenrc .screenrc
|
|
|
|
rm -f .vimrc
|
|
ln -s ~/Code/config/vimrc .vimrc
|
|
|
|
# set up the default branch for git
|
|
git config --global branch.master.remote origin
|
|
git config --global branch.master.merge refs/heads/master
|
|
|
|
mkdir -f ~/.vim
|
|
git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
|