Mac OS X中設定VIM文法高亮的方法_Linux

來源:互聯網
上載者:User

前言

Vim 是一款相當給力的源自UNIX平台的命令列文字編輯器,不過不給力的是,Mac OS X下並沒有諸多Linux發行版上VIM那些牛逼哄哄的神馬代碼高亮顯示啊,自動縮排之類的。

(譯者註:通常Linux發行版可以通過編輯/etc/vimrc檔案更改全域VIM設定或者針對某個使用者的~/.vimrc進行個人化配置)

為了彌補這個缺憾,請按如下方法操作:

實現方法

主要是修改~/.vimrc檔案

檔案內容如下:

set ai         " auto indentingset history=100     " keep 100 lines of historyset ruler        " show the cursor positionsyntax on        " syntax highlightingset hlsearch      " highlight the last searched termfiletype plugin on   " use the file type plugins" When editing a file, always jump to the last cursor positionautocmd BufReadPost *\ if ! exists("g:leave_my_cursor_position_alone") |\ if line("'\"") > 0 && line ("'\"") <= line("$") |\ exe "normal g'\"" |\ endif |\ endif

儲存退出即可。

總結

以上就是這篇文章的全部內容了,希望本文的內容對大家學習或者操作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.