標籤: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