2016-09-04 15:00:46 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
2016-10-27 01:05:24 +02:00
|
|
|
cd $(dirname "$0")
|
2016-09-04 15:00:46 +02:00
|
|
|
|
|
|
|
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\
|
2016-09-04 15:04:54 +02:00
|
|
|
-q
|
2016-09-04 15:10:46 +02:00
|
|
|
vim +PluginInstall +qall > /dev/null 2>&1
|
2016-09-04 15:00:46 +02:00
|
|
|
|