博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
重玩 vim 之琐碎记录——插件管理程序
阅读量:5879 次
发布时间:2019-06-19

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

根据我以往的经验,先搞定一个基本的 ,然后再安装一个插件管理,就能很轻松完成 vim 配置了。所以 google,看过一个,懒惰的我选择了以前就用过的 。

小插曲

其实由于我借用的那个 vimrc 的作者用的 插件管理工具是 pathogen,所以我一开始也就安装了 pathogen,而后才搜到这个回答,于是乎,需要先卸载 pathogen,再次 google,卸载方法如下:

delete ~/.vim/autoload/pathogen.vimdelete the lines you have added to ~/.vimrc

安装 Vundle

Vundle 需要用到 Git 和 Curl,所以安装前请确保这两个都已经安装。

installation requires Git and triggers git clone for each configured repository to ~/.vim/bundle/ by default. Curl is required for search.

If you are using Windows, go directly to .

在终端运行这行代码

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

然后把下面的配置粘贴进 .vimrc

set nocompatible              " be iMproved, requiredfiletype off                  " required" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()" alternatively, pass a path where Vundle should install plugins"call vundle#begin('~/some/path/here')" let Vundle manage Vundle, requiredPlugin 'VundleVim/Vundle.vim'" All of your Plugins must be added before the following linecall vundle#end()            " requiredfiletype 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

ok,打开 vim,可以安装插件了,操作如下:

启动 vim,运行 :PluginInstall

转载地址:http://hicix.baihongyu.com/

你可能感兴趣的文章
cocos2d中CCAnimation的使用(cocos2d 1.0以上版本)
查看>>
【吉光片羽】短信验证
查看>>
MacBook如何用Parallels Desktop安装windows7/8
查看>>
gitlab 完整部署实例
查看>>
GNS关于IPS&ASA&PIX&Junos的配置
查看>>
七天学会ASP.NET MVC (四)——用户授权认证问题
查看>>
upgrade to iOS7,how to remove stroyboard?
查看>>
影响企业信息化成败的几点因素
查看>>
SCCM 2016 配置管理系列(Part8)
查看>>
zabbix监控部署
查看>>
struts中的xwork源码下载地址
查看>>
Android硬件抽象层(HAL)深入剖析(二)
查看>>
CDays–4 习题一至四及相关内容解析。
查看>>
L3.十一.匿名函数和map方法
查看>>
java面向对象高级分层实例_实体类
查看>>
android aapt 用法 -- ApkReader
查看>>
[翻译]用 Puppet 搭建易管理的服务器基础架构(3)
查看>>
Android -- AudioPlayer
查看>>
Python大数据依赖包安装
查看>>
Android View.onMeasure方法的理解
查看>>