dotfiles/install.sh
2016-09-04 15:00:46 +02:00

12 lines
267 B
Bash
Executable file

#!/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