Vundle是vim上的插件管理器.只需要在.vimrc添加上控件名,Vundle可以帮我们下载到插件文件夹/Users/{username}/.vim/bundle中.

有一个vim插件的资源网站,可以在那里搜索:vim script

clone Vundle ,在输入一下命令

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

修改配置文件~/.vimrc

set backspace=

set nocompatible " be iMproved, required
filetype off " required
" set the runtime path to include Vundle and initialize
set rtp+=~/.vim/bundle/Vundle.vim
call vundle#begin()
" alternatively, pass a path where Vundle should install plugins
"call vundle#begin('~/some/path/here')
" let Vundle manage Vundle, required
Plugin 'VundleVim/Vundle.vim'
" The following are examples of different formats supported.
" Keep Plugin commands between vundle#begin/end.
" plugin on GitHub repo
Plugin 'tpope/vim-fugitive'
" plugin from http://vim-scripts.org/vim/scripts.html
" Plugin 'L9'
" Git plugin not hosted on GitHub
Plugin 'git://git.wincent.com/command-t.git'
" git repos on your local machine (i.e. when working on your own plugin)
Plugin 'file:///home/gmarik/path/to/plugin'
" The sparkup vim script is in a subdirectory of this repo called vim.
" Pass the path to set the runtimepath properly.
Plugin 'rstacruz/sparkup', {'rtp': 'vim/'} Plugin 'MarcWeber/vim-addon-mw-utils'
Plugin 'tomtom/tlib_vim'
Plugin 'garbas/vim-snipmate' Plugin 'davidhalter/jedi-vim'
Plugin 'nvie/vim-flake8'
Plugin 'klen/python-mode' Plugin 'google/vim-maktaba'
Plugin 'google/vim-codefmt' Plugin 'google/vim-glaive' augroup autoformat_settings
autocmd FileType bzl AutoFormatBuffer buildifier
autocmd FileType c,cpp,proto,javascript AutoFormatBuffer clang-format
autocmd FileType dart AutoFormatBuffer dartfmt
autocmd FileType go AutoFormatBuffer gofmt
autocmd FileType gn AutoFormatBuffer gn
autocmd FileType html,css,sass,scss,less,json AutoFormatBuffer js-beautify
autocmd FileType java AutoFormatBuffer google-java-format
autocmd FileType python AutoFormatBuffer yapf
" Alternative: autocmd FileType python AutoFormatBuffer autopep8 autocmd FileType vue AutoFormatBuffer prettier
augroup END " Install L9 and avoid a Naming conflict if you've already installed a
" different version somewhere else.
" Plugin 'ascenator/L9', {'name': 'newL9'}
" All of your Plugins must be added before the following line
call vundle#end() " required
filetype plugin indent on " required
" To ignore plugin indent changes, instead use:
"filetype plugin on
"
" Brief help
" :PluginList - lists configured plugins
" :PluginInstall - installs plugins; append `!` to update or just :PluginUpdate
" :PluginSearch foo - searches for foo; append `!` to refresh local cache
" :PluginClean - confirms removal of unused plugins; append `!` to auto-approve removal
"
" see :h vundle for more details or wiki for FAQ
" Put your non-Plugin stuff after this line

然后输入vim命令,在vim界面输入:PluginInstall 安装插件

在vim界面输入:PluginList 查看已安装插件

最新文章

  1. jquery——左右按钮点击切换一组图片功能
  2. Odoo9是如何计算预定交付日期的
  3. [Codeforces626F] Group Projects (DP)
  4. js 未结束的字符串常量错误解决方法
  5. Tomcat源码分析--转
  6. 关于JS的return false
  7. java解析xml字符串方法
  8. stm32之不定长接收
  9. CVTE前端一面
  10. redis 安装和配置
  11. html总结2
  12. 《深入理解Java虚拟机》(二)Java虚拟机运行时数据区
  13. locaton.href传参数
  14. saltstack 基础入门文档
  15. Linux文件目录介绍及文件颜色区别
  16. SOA (面向服务的架构)
  17. java实现简单webserver(分析+源码)
  18. hadoop之 Hadoop1.x和Hadoop2.x构成对比
  19. 学点TCPDUMP
  20. undefined reference to…

热门文章

  1. 安卓Recycleview简单的网格布局-初学者的关键点
  2. 08 MySQL存储引擎
  3. Centos7忘记mysql的root用户密码
  4. POJ1723 SOLDIERS 兄弟连
  5. 破解centos7 密码
  6. oracle查询SQL优化相当重要
  7. python 定义一个空集合、空字典
  8. 【STM32H7教程】第51章 STM32H7的LTDC应用之LCD汉字显示和2D图形显示
  9. 055-for循环中break的使用
  10. Elasticsearch 使用集群 - 列出索引