vim 外掛程式使用隨筆

來源:互聯網
上載者:User

標籤:

接觸了多年vim,以為到了山頂其實還在半山腰。

此隨筆記錄下最近學習的幾個外掛程式,備忘。

First Plugin:Vundle

前幾年一直都是把自己用的外掛程式改改,放到.vim目錄下,現在開始用vundle來管理,其特點是需要有網路,串連github。

git clone https://github.com/gmarik/Vundle.vim.git ~/.vim/bundle/Vundle.vim

之後把.vimrc改成這樣開頭

set nocompatible              " be iMproved, requiredfiletype off                  " required" set the runtime path to include Vundle and initializeset rtp+=~/.vim/bundle/Vundle.vimcall vundle#begin()" alternatively, pass a path where Vundle should install plugins"call vundle#begin(‘~/some/path/here‘)" let Vundle manage Vundle, requiredPlugin ‘gmarik/Vundle.vim‘

ok,Launch vim and run :PluginInstall

Second Plugin:Valloric/YouCompleteMe

Plugin ‘Valloric/YouCompleteMe‘  先用vundle裝好。 這個外掛程式有點複雜,所以不得不記錄。Mac使用者需要裝MacVim。

這個外掛程式是下載下來還要編譯的,因此如果以後運行了 :PluginUpdate 還要再編譯一次。

編譯方法:

cd ~/.vim/bundle/YouCompleteMe./install.sh --clang-completer

If you want Go support, you should add --gocode-completer

前提條件,安裝這些在Ubuntu和Mac下都是要先有編譯環境和工具的比如

Ubuntu

sudo apt-get install build-essential cmake

Mac 安裝xcode,command-line tools,cmake 因為編譯工具集之前可能就有,我忘了有沒有執行這些。

vim 外掛程式使用隨筆

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.