vim插件管理工具vundle安装与配置

懵懂的女人 提交于 2020-02-05 00:20:47

1 下载vundle

默认下载到~/.vim/bundle/vundle目录下

git clone https://github.com/gmarik/vundle.git ~/.vim/bundle/vundle

2 配置

在.vimrc 中添加bundle的配置
注意,.vimrc是自己在home目录下创建,可以在里面对vim进行基本配置。网上可以搜到很多现成的配置,可以根据个人喜好进行选择。
对于bundle的配置,将下面代码全部复制即可。

set nocompatible                " be iMproved
filetype off                    " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()

" let Vundle manage Vundle
Bundle 'gmarik/vundle'

"my Bundle here:
"
" original repos on github
Bundle 'kien/ctrlp.vim'
Bundle 'sukima/xmledit'
Bundle 'sjl/gundo.vim'
Bundle 'jiangmiao/auto-pairs'
Bundle 'klen/python-mode'
Bundle 'Valloric/ListToggle'
Bundle 'SirVer/ultisnips'
Bundle 'Valloric/YouCompleteMe'
Bundle 'scrooloose/syntastic'
Bundle 't9md/vim-quickhl'
" Bundle 'Lokaltog/vim-powerline'
Bundle 'scrooloose/nerdcommenter'
"..................................
" vim-scripts repos
Bundle 'YankRing.vim'
Bundle 'vcscommand.vim'
Bundle 'ShowPairs'
Bundle 'SudoEdit.vim'
Bundle 'EasyGrep'
Bundle 'VOoM'
Bundle 'VimIM'
"..................................
" non github repos
" Bundle 'git://git.wincent.com/command-t.git'
"......................................
filetype plugin indent on

3 安装插件

在命令行输入下面命令开始安装所有插件

vim +BundleInstall +qall

完成之后进入vim 在命令模式下BundleList可以查看当前安装的插件
在这里插入图片描述
其他常用命令:

  • 更新插件:BundleUpdate
  • 清除不再使用的插件:BundleClean,
  • 列出所有插件:BundleList
  • 查找插件:BundleSearch

4 关于代码补全

其中YouCompleteMe插件是非常强大的代码补全插件,其详细配置可以参考:

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!