Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Checking pathogen installation for vim

Tags:

vim

pathogen

I'm new to Vim and am looking for a way to check if pathogen is installed correctly. Some sort of editor or command line command that would let me know that vim has access to pathogen. Thanks!

like image 433
Bren Avatar asked Jan 10 '23 09:01

Bren


1 Answers

Type :scriptnames in vim.

Look for a line that says ~/.vim/autoload/pathogen.vim. If you see it pathogen is installed properly.


If you have any line in your vimrc that looks like

call pathogen#infect() 

And it doesn't error out when you load vim it is installed properly

like image 200
FDinoff Avatar answered Jan 23 '23 16:01

FDinoff