You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
1.3 KiB
30 lines
1.3 KiB
#!/bin/bash
|
|
|
|
|
|
echo "###############################################################################"
|
|
echo "# #"
|
|
echo "# ● ○ ○ ○ ● #"
|
|
echo "# ● ● ○ ● ● Mike Ochmann #"
|
|
echo "# ● ○ ● ○ ● https://mike-ochmann.de #"
|
|
echo "# ● ○ ○ ○ ● #"
|
|
echo "# ● ○ ○ ○ ● #"
|
|
echo "# #"
|
|
echo "# \`yadm\` after installtion script #"
|
|
echo "# #"
|
|
echo "###############################################################################"
|
|
echo
|
|
|
|
if [ ! -d ~/.vim/bundle/Vundle.vim ]
|
|
then
|
|
echo -e "\tInstalling 'Vundle'"
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
else
|
|
echo -e "\t'Vundle' is already installed, skipping..."
|
|
fi
|
|
|
|
echo -e "\tInstalling vim Plugins..."
|
|
|
|
vim +PluginInstall +qall
|
|
|
|
echo "DONE!"
|
|
echo
|
|
|