Vim 基本配置

來源:互聯網
上載者:User

標籤:style   blog   color   使用   檔案   os   

1、關閉vi的一致性模式

set nocompatible

2、配置backspace的工作方式

set backspace=indent,eol,start

3、顯示行號

set number

4、設定在編輯過程中右下角顯示光線標的行列資訊

set ruler

5、在狀態列顯示正在輸入的命令

set showcmd

6、設定記錄條數

set history=1000

7、設定取消備份 禁止臨時檔案的產生

set nobackupset noswapfile

8、設定匹配模式

set showmatch

9、設定C/C++方式自動對齊

set autoindentset cindent

10、開啟文法高亮功能

syntax enablesyntax on

11、指定色彩配置為256色

set t_Co=256

12、設定搜尋時忽略大小寫

set ignorecase

13、設定在vim中可以使用滑鼠

set mouse=a

14、設定tab寬度

set tabstop=4

15、設定自動對齊空格數

set shiftwidth=4

16、設定退格鍵時可以刪除4個空格

set smarttabset softtabstop=4

17、將tab鍵自動轉換為空白格

set expandtab

18、設定編碼方式

set encoding=utf-8

19、自動判斷編碼時 依次嘗試以下編碼

set fileencodings=ucs-bom,utf-8,cp936,gb18030,big5,euc-jp,euc-kr,latin1

20、檢測檔案類型

filetype on

21、針對不同的檔案採取不同的縮排方式

filetype indent on

22、允許外掛程式

filetype plugin on

23、啟動智能補全

filetype plugin indent on

24、開始使用vundle的必須配置

set nocompatiblefiletype offset rtp+=~/.vim/bundle/vundle/call vundle#rc()

25、使用vundle來管理vundle

Bundle ‘gmarik/vundle‘

26、powerline外掛程式  狀態列增強顯示

Bundle ‘Lokaltog/vim-powerline‘

27、vim有一個狀態列 加上powerline 則兩個狀態列

set laststatus=2set t_Co=256let g:Powline_symbols=‘fancy‘

28、vundle配置必須 開啟外掛程式

filetype plugin indent on



相關文章

聯繫我們

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