首先在Windows上安裝git,自行搞掂,謝謝。
設定 curl命令工具。
Curl已經在安裝git時就帶上了,接下來需要的是稍稍配置下使得它能在命令提示字元中使用。
找到git的安裝目錄,然後進入cmd目錄,建立一個名為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來驗證下curl是否可用了。
切換到使用者主目錄,運行:
git clone https://github.com/gmarik/vundle.git .vim/bundle/vundle
然後在使用者主目錄下建立一個名為 .vimrc的檔案,我的檔案內容如下:
set nu
set fileencoding=utf-8
set fileencodings=utf-8,gb18030,gb2312,gbk,big5
set ts=4
set expandtab
set autoindent
set nocompatible
set syntax=on
filetype off " required!
set rtp+=~/.vim/bundle/vundle/
call vundle#rc()
" let Vundle manage Vundle
" required!
Bundle 'gmarik/vundle'
Bundle 'mattn/emmet-vim'
Bundle 'Auto-Pairs'
Bundle 'php-doc'
Bundle 'PHPDoc-Script-PDocS'
let g:user_emmet_expandabbr_key = '<Tab>'
let g:user_emmet_settings = {'indentation': ' '}
filetype plugin indent on " required!
這樣Vundle的安裝就完畢了。
要使用Vundle,可以在上面建立的 _vimrc中添加 Bundle ‘bundle_name’。然後開啟vim,運行Vundle相關的命令來執行:
安裝外掛程式: :BundleInstall
更新外掛程式: :BundleInstall!
卸載外掛程式: :BundleClean
至於有什麼樣的外掛程式可以添加,可以到vim-scripts.org尋找。除此之外,還可以添加git管理的repo(包括GitHub上的,不在GitHub上的,以及本地repo)。