You can install Pathogen with the following command (assuming you're using a Linux operating system).
mkdir -p ~/.vim/autoload ~/.vim/bundle; \ curl -Sso ~/.vim/autoload/pathogen.vim \ https://raw.github.com/tpope/vim-pathogen/master/autoload/pathogen.vimOnce Pathogen is installed, enable it by adding the following to your .vimrc.
execute pathogen#infect()Once Pathogen is enabled, you can install a wealth of plugins by simply cloning them to your ~/.vim/bundle directory. As an example, you can install the vim-sensible plugin as follows.
cd ~/.vim/bundle git clone git://github.com/tpope/vim-sensible.git
No comments:
Post a Comment