05 October 2022

Vim plugin manager - Vim Pathogen

 I'd highly recommend installing vim pathogen if you want to see the universe of vim plugins.  

It's a package manager of sorts. Once you install it, you can git clone packages to your ~/.vim/bundle directory and they're auto-installed. No more plugin installation, maintenance, or uninstall headaches! 

 You can run the following script from the GitHub page to install pathogen:  

mkdir -p ~/.vim/autoload ~/.vim/bundle; \ 
curl -so ~/.vim/autoload/pathogen.vim \     
    https://raw.github.com/tpope/vim-pathogen/HEAD/autoload/pathogen.vim

No comments:

Post a Comment