2016-04-04 02:51:34 +00:00
|
|
|
YCM=~/.vim/bundle/YouCompleteMe
|
|
|
|
|
2017-07-15 12:34:35 +00:00
|
|
|
sudo pacman -Sy python cmake clang --needed --noconfirm
|
2016-05-21 11:45:23 +00:00
|
|
|
|
2016-04-04 02:51:34 +00:00
|
|
|
#######################
|
|
|
|
## Initialise Vundle ##
|
|
|
|
#######################
|
2016-10-14 21:42:03 +00:00
|
|
|
mkdir -p ~/.vim/{bundle,swapfiles}
|
2016-04-04 02:51:34 +00:00
|
|
|
git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim
|
2017-07-14 13:15:48 +00:00
|
|
|
vim +PluginUpdate +qall
|
2016-04-04 02:51:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
#########################
|
|
|
|
## Setup YouCompleteMe ##
|
|
|
|
#########################
|
|
|
|
cd "$YCM"
|
2016-10-14 21:42:03 +00:00
|
|
|
git submodule update --init --recursive
|
2017-07-14 13:15:48 +00:00
|
|
|
./install.py --system-libclang --clang-completer
|