curl -sLf https://spacevim.org/install.sh | bash
cd $HOME/.vim/plugged
git clone https://github.com/ycm-core/YouCompleteMe.git
sudo apt install build-essential cmake vim-nox python3-dev
python3 install.py --all
We will need to add a line on: ~/.space-vim. Search for this:
" Manage your own plugins.
" Refer to https://github.com/junegunn/vim-plug for more detials.
function! UserInit()
" Add your own plugin via Plug command.
Plug 'junegunn/seoul256.vim'
endfunction
Add after the first Plug line:
Plug 'Valloric/YouCompleteMe'
Result is:
" Manage your own plugins.
" Refer to https://github.com/junegunn/vim-plug for more detials.
function! UserInit()
" Add your own plugin via Plug command.
Plug 'junegunn/seoul256.vim'
Plug 'Valloric/YouCompleteMe'
endfunction