linux下vim安裝vundle並安裝emmet

來源:互聯網
上載者:User


首先在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)。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.