2015-12-21 18:51:28 +00:00
|
|
|
#!/bin/bash
|
2015-12-23 04:20:23 +00:00
|
|
|
|
|
|
|
ln -s $(pwd)/bash_aliases ~/.bash_aliases
|
|
|
|
ln -s $(pwd)/gitconfig ~/.gitconfig
|
|
|
|
ln -s $(pwd)/gitignore ~/.gitignore
|
|
|
|
ln -s $(pwd)/hushlogin ~/.hushlogin
|
|
|
|
ln -s $(pwd)/vim ~/.vim
|
|
|
|
ln -s $(pwd)/vimrc ~/.vimrc
|
|
|
|
ln -s $(pwd)/vimrc.bundles ~/.vimrc.bundles
|
|
|
|
ln -s $(pwd)/zshrc ~/.zshrc
|
|
|
|
|
2015-12-23 04:23:06 +00:00
|
|
|
# Setup vim
|
2015-12-23 04:20:23 +00:00
|
|
|
rm -rf ~/.vim/bundle/Vundle.vim
|
2015-12-23 04:23:06 +00:00
|
|
|
mkdir -p ~/.vim/bundle
|
2015-12-23 04:20:23 +00:00
|
|
|
git clone https://github.com/VundleVim/Vundle.vim ~/.vim/bundle/Vundle.vim
|
|
|
|
vim +PluginInstall +qall
|