2020-07-11 10:25:30 +00:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
echo "Installing Vundle + VIM Plugins"
|
|
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
|
|
vim +PluginInstall +qall >/dev/null
|
|
|
|
#https://github.com/ycm-core/YouCompleteMe/blob/master/README.md#installation
|
|
|
|
cd "$HOME/.vim/bundle/YouCompleteMe" || exit
|
|
|
|
./install.py --all
|
2020-07-23 08:50:07 +00:00
|
|
|
mkdir -p "$HOME/.vim/spell"
|
|
|
|
|
2020-07-11 10:25:30 +00:00
|
|
|
cd "$HOME" || exit
|
|
|
|
git clone https://github.com/dbeniamine/cheat.sh-vim.git ~/.vim/cheat.sh-vim
|