博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
使用Vundle来管理vim的插件
阅读量:6702 次
发布时间:2019-06-25

本文共 3034 字,大约阅读时间需要 10 分钟。

hot3.png

使用Vundle来管理vim的插件

字数554 阅读5840 评论2 喜欢1

用 vundle 来管理 vim 插件

  1. 首先vundle 来管理vim 是潮流,并且方便快捷
  2. 它使用类似 Ruby Bundler 的方式来管理插件,你只需要在.vimrc里面用Bundle声明插件

具体参考下面的介绍

下面介绍下我的安装过程

  • 下载MacVim
  • 在~/目录下面创建 .vim 目录,然后再创建 .vim/bundle
  • cd ~/.vim/bundle 目录,然后执行 git clone 等待完成
  • 在 ~/.vimrc这个文件的头部加上下面这个配置,这个是官网的介绍
set nocompatible              " be iMproved, required  filetype off                  " required  " set the runtime path to include Vundle and initialize    set rtp+=~/.vim/bundle/vundle/  call vundle#rc()    " alternatively, pass a path where Vundle should install plugins    "let path = '~/some/path/here'    "call vundle#rc(path)    " let Vundle manage Vundle, required    Plugin 'gmarik/vundle'    " The following are examples of different formats supported.    " Keep Plugin commands between here and filetype plugin indent on.    " scripts on GitHub repos    Plugin 'tpope/vim-fugitive'    Plugin 'Lokaltog/vim-easymotion'    Plugin 'tpope/vim-rails.git'    " 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/'}    " scripts from http://vim-scripts.org/vim/scripts.html    Plugin 'L9'    Plugin 'FuzzyFinder'    " scripts not 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'    " ...    filetype plugin indent on     " required    " To ignore plugin indent changes, instead use:    "filetype plugin on    "    " Brief help    " :PluginList          - list configured plugins    " :PluginInstall(!)    - install (update) plugins    " :PluginSearch(!) foo - search (or refresh cache first) for foo    " :PluginClean(!)      - confirm (or auto-approve) removal of unused plugins    "    " see :h vundle for more details or wiki for FAQ    " NOTE: comments after Plugin commands are not allowed.    " Put your stuff after this line
  • 随便开个窗口,从控制台打开vim , 执行 :PluginInstall,即可安装 Plugin 指定的插件
  • 我在.vimrc 文件中,在最后一行加载 填写

    Bundle 'rking/ag.vim'

    在执行:PluginInstall 就会安装我的ag.vim

    最后在我的MacVim就可以使用 :Ag bababab 就可以使用了。

    顺便说下,比 ack 更快更好用的东东:the silver searcher, 速度能提升5倍。

 

 

 

 

 

 

 

 

 

之前一直用来管理vim插件,各方面还好,但是有几个缺点让人很难受:

1. 很难和别人分享你的vim配置和插件库。因为你要详细的告诉别人你都安装了哪些插件,或者你干脆把插件文件都copy给他。
2. 插件升级比较繁琐,你要一个个的cd到插件目录,然后执行 git pull 。

后来发现了,感觉这才是世界潮 流,它使用类似 Ruby Bundler 的方式来管理插件,你只需要在.vimrc里面用Bundle声明插件,然后在vim里面用:BundleInstall 安装所有插件,用 :BundleInstall! 来更新插件。其他功能包括:查询插件和清除不需要的脚本目录,详情可以参考

在这里分享一下我的 和 ,现在终于可以分享后一键安装了。

这里我说一下MacOS下的安装步骤:

1. 到下载 MacVim
2. 在~/目录下面创建 .vim 目录,然后再创建 .vim/bundle
3. cd ~/.vim/bundle 目录,然后执行 git clone 等待完成
4. 然后下载我上面分享的哪两个文件 .vimrc, .gvimrc 放到你的home(~/)目录下面
5. 随便开个窗口,从控制台打开vim 或者 gvim ,然后执行-> :BundleInstall ,vundle会自动下载声明的插件并安装到 ./vim/bundle 目录里面
到此,安装结束,可以畅游vim了。

如果你的 Powerline 没有华丽丽的面包屑效果,可以执行如下操作,给字体打个补丁:

1. fontforge -script ~/.vim/bundle/vim-powerline/fontpatcher/fontpatcher ~/Library/Fonts/Your-font-name.ttf
2. rm ~/tmp/Powerline_default_default_compatible.cache

转载于:https://my.oschina.net/u/2528742/blog/681058

你可能感兴趣的文章
文件权限的s位
查看>>
zencart 如何调用边框等
查看>>
JS获取页面高宽
查看>>
Java集合, ArrayBlockingQueue源码解析(常用于并发编程)
查看>>
二维几何变换---二维复合变换
查看>>
阶乘的末尾有多少0 Factorial Trailing Zeroes
查看>>
我的友情链接
查看>>
Windows Server2003防***权限设置
查看>>
特例:Outlook / Live Mail 之非戰之罪:附件打不開
查看>>
MyEclipse上运行比特币全节点bitcoinj
查看>>
Linux系统下Shell命令行快捷键实用技巧
查看>>
解决“远程计算机需要网络级别身份验证,你的系统不支持”难题
查看>>
python 操作mysql数据库
查看>>
AES、RSA加密原理
查看>>
我的友情链接
查看>>
linux之sed用法
查看>>
Cisco's advise for Router's clock rate
查看>>
Android获取应用的签名信息
查看>>
[新手-数据分析师]numpy学习笔记(4th)
查看>>
meta 语法理解
查看>>