博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
gVim vundle
阅读量:5950 次
发布时间:2019-06-19

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

1- 安装gVim

  • 选择Full模式
  • vimfiles 文件夹下,会有许多空文件夹。将它们全删掉。
  • vim74文件夹下的autoload文件夹 剪切到vimfiles文件夹下。
  • vimfiles文件夹下新建文件夹bundle

2- 安装msysGit

3- 安装curl

  • 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 %*
  • curl --version 如果有信息提示,则已安装

4- 安装vundle

vundle目录下

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

5- 修改配置_vimrcvim_cfg后面加上这些

filetype off                  " required" set the runtime path to include Vundle and initializeset rtp+=E:\Vim\vimfiles\bundle\Vundle.vimcall vundle#begin()" let Vundle manage Vundle, requiredPlugin 'VundleVim/Vundle.vim'Plugin 'tpope/vim-fugitive'Plugin 'L9'" All of your Plugins must be added before the following linecall vundle#end()            " requiredfiletype plugin indent on    " required

转载于:https://www.cnblogs.com/otfsenter/p/6002583.html

你可能感兴趣的文章
索引与数据完整性的故事
查看>>
企业 - varnish
查看>>
16.4配置Tomcat监听80端口 16.5 配置Tomcat虚拟主机16.8Tomcat日志
查看>>
Play 2.4 学习笔记
查看>>
python解析json文件
查看>>
Spring 声明式注解事务实现机制
查看>>
决心书
查看>>
Debian 9.x配置SSH允许root用户登录
查看>>
控制反转(Ioc)与依赖注入(DI)
查看>>
Nginx优化,让你的网站轻松应对大流量
查看>>
ajaxFileUpload文件
查看>>
linux下MySQL 5.6源码安装
查看>>
2018,从梦想到事业
查看>>
python中的字典用法大全的代码
查看>>
如何挑选优质光模块?
查看>>
初学telnet
查看>>
C++线程入口函数的几种方式
查看>>
成都课得在线|UI该不该放入网络运营范畴
查看>>
内联元素的padding,margin,border等不起作用的原因
查看>>
事务与并发控制
查看>>