首页 > 代码库 > vim使用pathogen

vim使用pathogen

Installation
Install to ~/.vim/autoload/pathogen.vim. Or copy and paste:

mkdir -p ~/.vim/autoload ~/.vim/bundle && \
curl -LSso ~/.vim/autoload/pathogen.vim https://tpo.pe/pathogen.vim
If you‘re using Windows, change all occurrences of ~/.vim to ~\vimfiles.

要安装新插件,只需要下载该插件,并将其放到~/.vim/bundle/目录下即可。
假设要下载安装NERDTree插件,只需要进入到~/.vim/bundle/目录,然后执行以下命令:
git clone http://github.com/scrooloose/nerdtree.git
而要卸载该插件也非常简单,只需要在~/.vim/bundle/目录下删除nerdtree目录即可
要更新该插件到最新版本,只需要进入到该目录~/.vim/bundle/nerdtree/,并执行以下命令:

git pull origin

安装YouCompleteMe

git clone --recursive https://github.com/Valloric/YouCompleteMe.git

vim使用pathogen