Vundle的安装与使用

作为小白用户,记录一下自己在window7下的安装过程问题,github和vim以前已经安装过了,可以参考其他文章。

1. 安装Vundel:


2. 设置Curl 

在github下的bin文件夹,创建curl.cmd文件:


内容为:

@rem Do not use "echo off" to not affect any child calls.
@setlocal@rem Get the abolute path to the parent directory, which is assumed to be the
@rem Git installation root.
@for /F "delims=" %%I in ("%~dp0..") do @set git_install_root=%%~fI
@set PATH=%git_install_root%\bin;%git_install_root%\mingw\bin;%PATH%@if not exist "%HOME%" @set HOME=%HOMEDRIVE%%HOMEPATH%
@if not exist "%HOME%" @set HOME=%USERPROFILE%@curl.exe %*
在cmd环境中运行:curl --version,就配置好了


3. 配置插件:

这下面是我之前的_vimrc里面的内容

set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswinset diffexpr=MyDiff()
function MyDiff()let opt = '-a --binary 'if &diffopt =~ 'icase' | let opt = opt . '-i ' | endifif &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endiflet arg1 = v:fname_inif arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endiflet arg2 = v:fname_newif arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endiflet arg3 = v:fname_outif arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endiflet eq = ''if $VIMRUNTIME =~ ' 'if &sh =~ '\<cmd'let cmd = '""' . $VIMRUNTIME . '\diff"'let eq = '"'elselet cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'endifelselet cmd = $VIMRUNTIME . '\diff'endifsilent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction" REQUIRED. This makes vim invoke Latex-Suite when you open a tex file.
filetype plugin on" IMPORTANT: win32 users will need to have 'shellslash' set so that latex
" can be called correctly.
set shellslash" IMPORTANT: grep will sometimes skip displaying the file name if you
" search in a singe file. This will confuse Latex-Suite. Set your grep
" program to always generate a file-name.
set grepprg=grep\ -nH\ $*" OPTIONAL: This enables automatic indentation as you type.
filetype indent on" OPTIONAL: Starting with Vim 7, the filetype of empty .tex files defaults to
" 'plaintex' instead of 'tex', which results in vim-latex not being loaded.
" The following changes the default filetype back to 'tex':
let g:tex_flavor='latex'let g:Tex_DefaultTargetFormat = 'pdf'
let g:Tex_CompileRule_pdf = 'pdflatex --synctex=-1 -src-specials -interaction=nonstopmode $*'
"let SumatraPDF="D:Program Files/SumatraPDF-2.5.2/SumatraPDF.exe"
let g:Tex_ViewRule_pdf = 'D:Program Files/SumatraPDF-2.5.2/SumatraPDF.exe -reuse-instance -inverse-search "gvim -c \":RemoteOpen +\%| \%f\""'" This set the grammar highlight by ls
set nu!
colorscheme desert
syntax enable
syntax on

改为:

set nocompatible
source $VIMRUNTIME/vimrc_example.vim
source $VIMRUNTIME/mswin.vim
behave mswinset diffexpr=MyDiff()
function MyDiff()let opt = '-a --binary 'if &diffopt =~ 'icase' | let opt = opt . '-i ' | endifif &diffopt =~ 'iwhite' | let opt = opt . '-b ' | endiflet arg1 = v:fname_inif arg1 =~ ' ' | let arg1 = '"' . arg1 . '"' | endiflet arg2 = v:fname_newif arg2 =~ ' ' | let arg2 = '"' . arg2 . '"' | endiflet arg3 = v:fname_outif arg3 =~ ' ' | let arg3 = '"' . arg3 . '"' | endiflet eq = ''if $VIMRUNTIME =~ ' 'if &sh =~ '\<cmd'let cmd = '""' . $VIMRUNTIME . '\diff"'let eq = '"'elselet cmd = substitute($VIMRUNTIME, ' ', '" ', '') . '\diff"'endifelselet cmd = $VIMRUNTIME . '\diff'endifsilent execute '!' . cmd . ' ' . opt . arg1 . ' ' . arg2 . ' > ' . arg3 . eq
endfunction" ----------------- The Vundle -----------------
filetype off                "required" set the runtime path to include Vundel and initialize
set rtp +=$VIM/vimfiles/bundle/Vundle.vim
call vundle#begin('$VIM/vimfiles/plugin_vundle')
" alternatively, pass a path where Vundle should install plugins
" call vundle#begin('~/some/path/here')" let Vundle manage Vundle, required
Plugin 'gmarik/Vundle.vim'" The following are examples of different formats supported.
" Keep Plugin commands betweenvundle#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/gmraik/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/'} 
" Avoid a name confict with L9
" Plugin 'user/L9', {'name': 'newL9'}" All of your Plugins must be added before the following line
call vundle#end()     " required
filetype plugin indent on  "required
" --------------------------------------------
然后退出打开gvim,输入:PluginInstall,就成功了:


但是这个

call vundle#begin('$VIM/vimfiles/plugin_vundle')
不能改为:

call vundle#begin('$VIM/vimfiles/bundle')
就会出现下面的错误:



感觉这个有点坑爹啊,这样在plugin_vundle文件夹和bundle文件夹下都有这个Vundle.vim文件哭



参考:

【1】使用 Vundle 管理 Vim 插件 http://blog.log4d.com/2012/04/vundle/

【2】vim中的杀手级插件: vundle http://zuyunfei.com/2013/04/12/killer-plugin-of-vim-vundle/

【3】使用vundle进行插件管理(vim笔记二)http://jianshu.io/p/mHUR4e

【4】Vundle 管理 Vim 插件 http://www.zfanw.com/blog/vundle-vim-plugin-management.html

【5】gmarik/Vundle.vim https://github.com/gmarik/Vundle.vim

【6】Windows下配置Git http://blog.csdn.net/exlsunshine/article/details/18939329

【7】Windows下安装Vim插件管理Vundle http://blog.csdn.net/zhuxiaoyang2000/article/details/8636472

【8】AlloVince 的 VIM 配置方案  http://yp.oss.org.cn/blog/show_resource.php?resource_id=1561%E3%80%82

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://xiahunao.cn/news/252425.html

如若内容造成侵权/违法违规/事实不符,请联系瞎胡闹网进行投诉反馈,一经查实,立即删除!

相关文章

装机软件搜狗拼音输入法v11.5.0.5352去广告精简优化版

分享一个WIN10常用的搜狗拼音输入法软件&#xff0c;搜狗拼音输入法去广告精简优化版&#xff0c;绿色无广告&#xff0c;支持工具箱扩展。 https://url06.ctfile.com/f/18418706-528416668-049556 &#xff08;访问密码&#xff1a;7860&#xff09;

安卓微商助手高级版V2.4.6 群发多开检测僵尸粉等功能_海量微商工具

简介&#xff1a; 微商助手拥有海量的微商工具&#xff0c;微商助手是微商、群发、拓宽人脉的营销神器&#xff0c;微商助手有群发消息图片&#xff0c;让你群发消息推广快人一步&#xff0c;严格按照微信官方使用规则操作&#xff0c;基于安全稳定的情况下&#xff0c;为微商…

【数据恢复】【傲梅分区助手】

1. 问题起因 https://blog.csdn.net/m0_52010566/article/details/124058017 在第4步错误删除分区 结果丢失下面分区&#xff1a; 2. 解决方案 下载傲梅分区助手绿色版 https://www.disktool.cn/download.html 3. 恢复分区 4. 完成恢复

中国电信助手

免费使用,禁止买卖,仅限用于学习和研究目的&#xff1b;不得用于商业或者非法用途&#xff0c;否则&#xff0c;一切后果请用户自负。您必须在下载后的24个小时之内&#xff0c;从您的电脑中彻底删除上述内容。 中国电信助手,每日签到(随机金豆),每日喂食宠物.每日登录奖励领取…

(首发)SixTool多功能代挂助手

功能&#xff1a; SixTool一款多功能的云任务程序网易云(每日签到&#xff0c;每日云贝&#xff0c;打卡300首歌&#xff0c;音乐人任务)wx运动(指定步数范围&#xff09;哔哩(视频直播签到&#xff0c;每日观看视频&#xff0c;投币&#xff0c; 漫画签到&#xff0c;分享视频…

微信社群管家推荐使用它,专业社群运营管理助手!

文章开篇&#xff0c;我们来做个小调查!你觉得微信社群管理最头疼的事情是什么? A 发广告的太多&#xff0c;群主只有 1 个&#xff0c;踢不过来? B 群里老问重复的问题&#xff0c;回答问题太耗时 C 群里进新人没有及时欢迎&#xff0c;新人宝宝难留存 D 聊天记录看不到&…

百旺助手

《百旺助手》是一款专门针对百旺税控发票开票软件(税控盘版)的辅助软件&#xff0c;支持增值税专用发票、增值税普通发票&#xff0c;货物运输发票&#xff0c;机动车票等所有发票信息的抽取采集&#xff0c;及客户信息&#xff0c;商品信息等的一键备份导入&#xff0c;支持一…

小蔡电脑助手3.0新版全新发布上线

小蔡电脑助手3.0新版全新发布上线啦 源码下载地址&#xff1a;仿360安全卫士-Windows电脑助手软件-小蔡电脑助手3.0源码-桌面系统文档类资源-CSDN下载 小蔡电脑助手是一款集多种功能为一体的&#xff0c;帮助您方便日常系统优化加速、清理&#xff0c;学习工作、生活网购的工具…

win10连接android手机助手下载,完美win10手机助手-Win10手机助手v1.0.1 官方免费版下载_飞翔下载...

飞翔小编非常喜欢研究一些手机系统&#xff0c;虽说用的Iphone&#xff0c;但是对win10的系统很感兴趣啊&#xff0c;所以特意买了个小米4刷win10系统玩。。APK转制APPX格式Win10手机直装包。尽情享用安卓百万级应用游戏。干净简洁的界面&#xff0c;一键式无脑操作&#xff0c…

电脑软件推荐【含软件链接】:压缩,插件,截屏,录制,办公,电脑防护与修复,磁盘清理,软件卸载......

文章目录 0.写在前面1.解压、压缩文件 - Bandizip1.1 :triangular_flag_on_post: Bandizip 介绍1.2 :speech_balloon: 有话说 2.社交应用 - QQ、WeChat2.1 :triangular_flag_on_post: QQ 介绍2.2 :triangular_flag_on_post: WeChat 介绍2.3 :speech_balloon: 有话说 3.浏览器 -…

微信群管理助手

微信群管理软件现在有很多产品&#xff0c;功能宣传也大差不差&#xff0c;可以根据自己的需求来进行选择 推荐webot社群助手&#xff0c;这是一个面向个微使用的社群管理工具 功能包括智能群管理、客户管理、朋友圈管理、营销管理、话术管理等几大模块。 一、WeBot社群助手…

东华助手 v1.6.5

东华助手是一款专为东华人设计的手机应用&#xff0c;通过它可快捷获取学校新闻、教务通知、图书馆藏、讲座安排等服务信息&#xff0c;绑定校内账号后还能轻松查询本人成绩、绩点、课表、考场、图书借阅、晨跑等信息&#xff0c;并能及时接收重要信息推送。未来将进一步完善应…

搜狗浏览器如何设置截屏快捷键?

搜狗浏览器如何设置截屏快捷键&#xff1f;

截取计算机桌面图,电脑如何截屏 怎样截取屏幕图片

您可能感兴趣的话题&#xff1a; 电脑如何截屏 核心提示&#xff1a;今天向大家介绍一些实用的Win7截图技巧&#xff0c;在你需要别人协助或需要发屏幕图片给别人的时候&#xff0c;非常管用的截图方法&#xff0c;一共三种&#xff0c;下面慢慢说来。 今天向大家介绍一些实用的…

荣耀android手机怎么截图,荣耀5C手机如何截图截屏 荣耀5C三种截屏方法

华为荣耀5C怎么截图呢&#xff1f;相信这是很多小白用户不太明白的。作为荣耀今年首款机型&#xff0c;荣耀5C凭借首发麒麟650处理器、金属机身设计以及指纹识别而备受关注&#xff0c;相信用户拿到真机之后在使用过程当中肯定会用到截图工具。针对小白朋友&#xff0c;下面脚本…

【ChatGPT插件第一期】28个ChatGPT插件,让你的学习、工作、生活效率翻倍!

文章目录 人工智能福利文章什么是ChatGPT插件如何使用ChatGPT插件28个插件全解读写在最后 人工智能福利文章 【分享几个国内免费可用的ChatGPT镜像】【10几个类ChatGPT国内AI大模型】【用《文心一言》1分钟写一篇博客简直yyds】【用讯飞星火大模型1分钟写一个精美的PPT】 Cha…

产品图片 php,ps怎么做产品图片

ps怎么做产品图片&#xff1f; 修图有两种方法&#xff0c;一种是在原图的基础上&#xff0c;用图章和修补工具把瑕疵修掉&#xff0c;然后加强光感&#xff0c;这个图拍的不好&#xff0c;如果用图章工作量很大。我们只能用另外一种方法&#xff0c;重新画一遍。 背景图层&…

制作逼真立体玻璃奶瓶图片的PS教程

玻璃奶瓶本身部分作者是在AI中完成的&#xff0c;可以尝试在PS中完成。过程也并不复杂&#xff0c;先找一些实物图了解一下高光及暗部分布&#xff0c;然后用路径勾出轮廓&#xff0c;在慢慢渲染出高光及暗部即可。最终效果 一、打开AI&#xff0c;新建一个画布&#xff0c;尺…

art-高光贴图制作

title: art-高光贴图制作 categories: Art tags: [art, 高光, 贴图, 制作, ta] date: 2019-01-23 14:26:18 comments: false art-高光贴图制作 前篇 次世代游戏贴图 制作高光贴图 08 - https://www.youtube.com/watch?vWwJmwRKbaCo 流程 一般喜欢在图层中干, 保留原图 先把 …

用ps制作android日历步骤,PS设计制作日历

最终效果 一、观察这个图标&#xff0c;我们将它分成三个部分来制作&#xff0c;如下图所示。①日历的卷页 ②日历的夹子和金属环 ③底座。 2、新建一个700*800的画布&#xff0c;如下图所示。 3、新建一个圆角矩形作为日历卷页的最后一页。如下图所示。 4、为圆角矩形添加图层…