2016-04-04 03:51:34 +01:00
|
|
|
YCM=~/.vim/bundle/YouCompleteMe
|
|
|
|
|
2016-05-21 12:45:23 +01:00
|
|
|
sudo pacman -S python --needed --noconfirm
|
|
|
|
|
2016-04-04 03:51:34 +01:00
|
|
|
#######################
|
|
|
|
## Initialise Vundle ##
|
|
|
|
#######################
|
2016-10-14 22:42:03 +01:00
|
|
|
mkdir -p ~/.vim/{bundle,swapfiles}
|
2016-04-04 03:51:34 +01:00
|
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
|
|
|
vim +PluginInstall +qall
|
|
|
|
|
|
|
|
|
|
|
|
#########################
|
|
|
|
## Setup YouCompleteMe ##
|
|
|
|
#########################
|
|
|
|
cd "$YCM"
|
2016-10-14 22:42:03 +01:00
|
|
|
git submodule update --init --recursive
|
2016-05-16 17:44:30 +01:00
|
|
|
./install.py --clang-completer
|