tpope / vim-pathogen

pathogen.vim: manage your runtimepath

Home Page:http://www.vim.org/scripts/script.php?script_id=2332

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

plugins not loading

zwhitchcox opened this issue · comments

I used the script

mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

and added execute pathogen#infect() to my vimrc, but it still is not loading plugins.

Did you put your plugins under ~/vim/bundle/
On Jan 13, 2016 18:30, "zwhitchcox" notifications@github.com wrote:

I used the script

mkdir -p ~/vim/autoload ~/vim/bundle &&
curl -LSso ~/vim/autoload/pathogenvim https://tpope/pathogenvim

and added execute pathogen#infect() to my vimrc, but it still is not
loading plugins


Reply to this email directly or view it on GitHub
#169.

I put them under ~/.vim/bundle/

Do you have both ~/.vim and ~/vim
You said you installed into ~/vim
On Jan 13, 2016 18:34, "zwhitchcox" notifications@github.com wrote:

I put them under ~/.vim/bundle/


Reply to this email directly or view it on GitHub
#169 (comment).

No, I only installed pathogen to .vim. I added execute pathogen#infect() to .vimrc. I just used the script in the README:

mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim

That is incorrect. I believe the client you are using is removing the dot from the file path.

Indeed the . got lost somewhere between github and gmail.
On Jan 13, 2016 18:44, "zwhitchcox" notifications@github.com wrote:

That is incorrect. I believe the client you are using is removing the dot
from the file path.


Reply to this email directly or view it on GitHub
#169 (comment).

Check :set runtimepath?

from :set runtimepath

runtimepath=~/.vim,/usr/share/vim/vimfiles,/usr/share/vim/vim74,/usr/share/vim
/vimfiles/after,~/.vim/after

fixed: was using vi instead of vim