dotfiles/init.sh

20 lines
448 B
Bash
Raw Normal View History

rm ~/.vim/ -rf
mkdir ~/.vim
mkdir ~/.vim/autoload
mkdir ~/.vim/bundle
2018-02-11 12:49:42 -08:00
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
2018-03-10 08:05:42 -08:00
git clone https://github.com/ctrlpvim/ctrlp.vim.git ~/.vim/bundle/
git clone https://github.com/jpalardy/vim-slime.git ~/.vim/bundle/
2018-02-11 12:49:42 -08:00
rm ~/.vimrc
ln -s $PWD/dotfiles/.vimrc ~/
2018-03-13 13:11:09 -07:00
rm ~/.gitconfig
ln -s $PWD/dotfiles/.gitconfig ~/
2018-03-15 10:58:57 -07:00
rm ~/.bash_profile
ln -s $PWD/dotfiles/.bash_profile ~/
2018-03-15 10:58:57 -07:00
source ~/.bash_profile