vundle这个插件主要是用来插件管理的。它可以根据你配置的插件地址,自动下载、更新、删除插件,非常的好用

地址 https://github.com/gmarik/vundle

然后你在 .vim下穿件一个bundle目录,紧接着把vundle放进去就行了。还有一种更加方便的方法,就是直接使用如下的命令

git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim

安装好以后,在你的.vimrc中加入如下内容

""""""""""""""""""""""""""""""
"vundle.vim
"可以管理、安装、卸载你的插件
"""""""""""""""""""""""""""""" "似乎这里是必须的,后面会重新打开
filetype off "设置运行跟初始化Vundle的路径
set rtp+=~/.vim/bundle/vundle/ "设置插件的安装目录,默认是vundle
"call vundle#begin('~/some/path/here')
"所有的安装插件都要在begin 跟 end
call vundle#begin() "添加Vundle到Vundle管理列表
Bundle 'gmarik/vundle' """""""""""""""""""""""""
"在Github其他用户下的repos, 需要写出”用户名/repos名
"""""""""""""""""""""""""
"方法、变量列表
Bundle 'majutsushi/tagbar'
"树形显示当前目录结构
Bundle 'scrooloose/nerdtree'
Bundle 'kien/ctrlp.vim'
Bundle 'Valloric/YouCompleteMe' "显示缓存文件列表
Bundle 'jlanzarotta/bufexplorer'
"使用Tab只能补全
Bundle 'ervandew/supertab'
"给字串添加()等包裹符号的插件
Bundle 'tpope/vim-surround'
Bundle 'exvim/main'
"自动补全引号、括号等
Bundle 'Raimondi/delimitMate'
"添加注释
Bundle 'tpope/vim-commentary' """""""""""""""""""""""""
"在Github vim-scripts 用户下的repos,只需要写出repos名称
"""""""""""""""""""""""""
"查看当前文件目录,不是以侧边栏显示,不过感觉没有nerdtree有用
"Bundle 'winfileexplorer'
"Bundle 'bufexplorer' """""""""""""""""""""""""
"不在Github上的插件,需要写出git全路径
"""""""""""""""""""""""""
"Bundle 'git://git.wincent.com/command-t.git' """""""""""""""""""""""""
"从本地获取插件,比如一些自己写的插件
"""""""""""""""""""""""""
"Bundle 'file://zhangshuli/.vim/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Bundle 'rstacruz/sparkup', {'rtp': 'vim/'}
" Avoid a name conflict with L9
"看起来像是处理名字冲突的?
"Bundle 'user/L9', {'name': 'newL9'} """""""""""""""""""""""""
"感觉用处不大的插件
"""""""""""""""""""""""""
"窗口管理器-02年以后就不再有人更新了,而且很多插件都不支持
"Bundle 'winmanager' "对应上面的begin
call vundle#end() "对应上面的filetype off
filetype plugin indent on
" To ignore plugin indent changes, instead use:
" Brief help
" :BundleList - list configured plugins
" :BundleInstall(!) - install (update) plugins
" :BundleSearch(!) foo - search (or refresh cache first) for foo
" :BundleClean(!) - confirm (or auto-approve) removal of unused plugins
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line "配置默认的ycm_extra_conf.p

最新文章

  1. 一个静态的HTML页面用jquery ajax登录到sharepoint页面
  2. Centos7 创建个文件 thread 怪现象
  3. 浅谈JavaScript中的闭包
  4. Good Bye 2013 C
  5. selenium webdriver (python) 第一版PDF
  6. 浅谈一下缓存策略以及memcached 、redis区别
  7. 【CF刷题】14-05-12
  8. pl/sql developer 登陆提示ORA-12514(转)
  9. Xcode_5
  10. VC++ 利用MAPI实现在程序中调用默认的电子邮件程序发送EMAIL(可以添加附件)。
  11. python基础学习笔记第二天 内建方法(s t r)
  12. Java基础知识强化之集合框架笔记69:Collections类之ArrayList存储自自定义对象并排序的案例
  13. [转]CSS vertical-align属性详解 作者:黄映焜
  14. where 1=1
  15. IOS UTI统一类型标识符:判断文件类型通过后缀
  16. Codeforce A. Fair Game
  17. 读取Pdm文件内容(含源码)
  18. 如何处理IO
  19. 游戏AI之决策结构—有限状态机/行为树(2)
  20. Redis可视化工具安装及常用操作操作

热门文章

  1. NoReferencedTableError: Foreign key associated with column ** with which to generate a foreign key to target column 'id'
  2. Windows系统环境变量、JAVA环境变量配置以及JVM加载过程
  3. Mysql如何避免全表扫描的方法
  4. windows部署iBase4J
  5. C中操作文件的几种模式
  6. 实现 jstl标签foreach 功能
  7. poj_1185状压dp
  8. 神经网络预测mnist时候如果不归一化,则准确率仅仅10%下文作者svm也遇到了。
  9. ES线程池设置
  10. nyoj--27--水池数目(dfs)