我用的vim插件

[code]set nocompatible
filetype off
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()

Bundle ‘Vundle/Vundle.vim’ " 插件管理器
Bundle ‘Raimondi/delimitMate’ " 括号等的自动补全
Bundle ‘Scrooloose/nerdtree’ " 文件管理器
Bundle ‘Shougo/unite.vim’ " 文件搜索
Bundle ‘majutsushi/tagbar’ " 代码结构浏览
Bundle ‘airblade/vim-gitgutter’ " 显示git修改状态
Bundle ‘morhetz/gruvbox’ " gruvbox主题
Bundle ‘kien/rainbow_parenthesses.vim’ " 不同层次括号着色
Bundle ‘bling/vim-airline’ " 状态条增强
Bundle ‘tpope/vim-surround’ " 区块选择增强
Bundle ‘scrooloose/nerdcommenter’ " 快速注释
Bundle ‘Lokaltog/vim-easymotion’ " 快速移动
Bundle ‘benmills/vimux’ " tumux支持
Bundle ‘plasticboy/vim-markdown’ " MarkDown支持
Bundle ‘junegunn/vim-easy-align’ " 对齐功能增强
"Bundle ‘Valloric/YouCompleteMe’ " 补全插件
"Bundle ‘SirVer/ultisnips’ " 补全增强
"Bundle ‘honza/vim-snippets’ " 代码片段支持
"Bundle ‘kien/ctrlp.vim’ " 文件搜索
"Bundle ‘scrooloose/syntastic’ " 静态语法检查
"Bundle ‘tpope/vim-fugitive’ " git支持

call vundle#end()
filetype plugin indent on[/code]

注释掉的那些也都在用,不过是用apt-get安装的,其他的用vundle来安装