Vim 安装vundle 和maximum-awesome

来源:互联网 发布:长沙百度seo 编辑:程序博客网 时间:2024/05/20 21:18



first step:


分别安装git和msysgit 


Install msysgit

After installation try running git --version within command prompt (press Win-R, typecmd, press Enter) to make sure all good:

C:\> git --versiongit version 1.7.4.msysgit.0

Setup Curl

Instructions blatently copied from vundle readme Installing Curl on Windows is easy asCurl is bundled with msysgit! But before it can be used with Vundle it's required makecurl run in command prompt. The easiest way is to create curl.cmd with this content

@rem Do not use "echo off" to not affect any child calls.@setlocal@rem Get the absolute 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 %*

And copy it to C:\Program Files\Git\cmd\curl.cmd, assuming msysgit was installed toc:\Program Files\Git

to verify all good, run:

C:\> curl --versioncurl 7.21.1 (i686-pc-mingw32) libcurl/7.21.1 OpenSSL/0.9.8k zlib/1.2.3Protocols: dict file ftp ftps http https imap imaps ldap ldaps pop3 pop3s rtsp smtp smtps telnet tftpFeatures: Largefile NTLM SSL SSPI libz


2.安装vundle


git clone https://github.com/gmarik/vundle.git /.vim/bundle/vundle
这个命令将安装vundle到当用户目录下,于我机如下目录示c:/codument setting\addrmiastro
3。下载maximum-awesome
把maximum-awesome 的文件全放到当前用户目标录下,于我机如下示目标录:c:/codument setting\addrimisnt
然后vimrc改成_vimrc,
vimrc.bundles改成.vimrc.bundles
vimrc.local改成.vimrc.local
vimrc.bundles.local改成.vimrc.bundles.local
4.安装VIM
这个直接装了

0 0
原创粉丝点击