Hacker News new | ask | show | jobs
by inDigiNeous 4876 days ago
Just a note, you don't need Vundle to install this.

I have pathogen installed, which does basically the same thing as Vundle.

Just clone the git repo to your ~/.vim/bundle directory and continue compiling as instructed.

2 comments

True, but I try to recommend a best practice (I never said Vundle was required, in fact the full Installation Guide mentions Pathogen as an option).
Instructions for an OS/X install with Brew, Macvim and Pathogen:

cd ~/.vim/bundle

git clone https://github.com/Valloric/YouCompleteMe.git

cd YouCompleteMe

mkdir ycmbuild

cd ycmbuild

# Do this only if you don't have cmake installed

brew update

brew install cmake

cmake -G "Unix Makefiles" . ~/.vim/bundle/YouCompleteMe/cpp/

make ycm_core

<Restart vim>