dotfiles/init.sh

24 lines
570 B
Bash
Raw Normal View History

rm ~/.vim/ -rf
2019-06-25 21:05:04 -07:00
rm ~/.vim/autoload/ -rf
rm ~/.vim/bundle/ -rf
mkdir ~/.vim
mkdir ~/.vim/autoload
mkdir ~/.vim/bundle
2019-06-25 21:05:04 -07:00
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
2019-06-25 21:05:04 -07:00
ln -sf $(pwd)/dotfiles/.vimrc ~/.vimrc
echo ".vimrc symlinked"
2018-03-13 13:11:09 -07:00
2019-06-25 21:05:04 -07:00
ln -sf $(pwd)/dotfiles/.gitconfig ~/.gitconfig
echo ".gitconfig symlinked"
2018-03-15 10:58:57 -07:00
2019-06-25 21:05:04 -07:00
ln -sf $(pwd)/dotfiles/.bash_profile ~/.bash_profile
echo ".bash_profile symlinked"
2018-03-15 10:58:57 -07:00
source ~/.bash_profile