2

I am trying to install YCM using Pathogen, however there isn't a tutorial to do this using Pathogen in the README file on Github. Is there any way to install YCM with Pathogen and how can I do so?

rgoliveira
  • 908
  • 10
  • 16
ModoUnreal
  • 642
  • 5
  • 15
  • Just curious - what's wrong with using Vundle with the [instructions here](https://github.com/Valloric/YouCompleteMe#windows)? – zarak Aug 17 '16 at 22:38
  • I am used to using Pathogen when installing other plugins and was curious if there was any way of doing so, as it might have made my life easier since I don't have or use Vundle. – ModoUnreal Aug 18 '16 at 05:42
  • @A.Hurtado, this is so common I have written a ruby script to handle installing plugins via Pathogen: https://github.com/zhon/vim-sitter – zhon Aug 19 '16 at 03:49

2 Answers2

2

To install a plugin with Pathogen you just need to put its folder inside your %USERPROFILE%/vimfiles/bundle/ folder.

One way to do it would be:

git clone https://github.com/Valloric/YouCompleteMe.git %USERPROFILE%/vimfiles/bundle/YouCompleteMe

And then follow the rest of the installation instructions as if it were Vundle (check the repo for more info):

cd %USERPROFILE%/vimfiles/bundle/YouCompleteMe
python install.py --all
rgoliveira
  • 908
  • 10
  • 16
1

On macOS using pyenv, I had to…

cd "$HOME/.vim/bundle"
git clone https://github.com/Valloric/YouCompleteMe.git
cd YouCompleteMe
git submodule update --init --recursive  # I had to do this several times… YMMV
PYTHON_CONFIGURE_OPTS="--enable-framework" pyenv install 3.6.12
pyenv local 3.6.12
python3.6 install.py --all
kojiro
  • 74,557
  • 19
  • 143
  • 201