VIM:插件

来自WHY42
imported>Soleverlee2017年4月11日 (二) 03:32的版本 →‎xx

Pathogen

Pathomakes it super easy to install plugins and runtime files in their own private directories.

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

.vimrc:

execute pathogen#infect()

supertab

Supertab可以实现按tab自动补全。

vim supertab.vmb
:so %

安装完在~/.vim/plugin

NERD Tree

git clone https://github.com/scrooloose/nerdtree.git ~/.vim/bundle/nerdtree

#in vim
:helptags ~/.vim/bundle/nerdtree/doc/
:help NERDTree

XX