dotfiles/install.sh

13 lines
267 B
Bash
Raw Normal View History

2016-09-04 15:00:46 +02:00
#!/bin/bash
cd $(basename "$0")
echo "Creating symlinks…"
python3 mkSymlink.py > /dev/null
echo "Installing vim Vundle plugins…"
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim\
> /dev/null
vim +PluginInstall +qall > /dev/null