標籤:
"是否更多的相容viset nocp"設定backspace鍵的工作方式"indent:設定了自動縮排,想用退格鍵將欄位縮排刪掉"eol:如果插入模式在行開頭,想通過退格鍵合并兩行"start:要刪除此次之前的輸入set backspace=indent,eol,start"顯示行號set number"在編輯過程中,右下角顯示光線標的行列訊息set ruler"當一行文字過程時不換行set nowrap"在狀態列顯示正在輸入的命令set showcmd"設定記錄條數set history=1000"取消備份set nobackup"禁止臨時檔案產生set noswapfile"反白當前行set cursorline"反白當前列(不推薦)"set cursorcolumn"設定匹配模式 類似當輸入一個左括弧會匹配相應的右括弧set showmatch"設定c/c++方式自動對齊set autoindentset cindent"設定文法高亮syntax enablesyntax on"指定色彩配置為256色set t_Co=256"搜尋時忽略大小寫set ignorecase"啟用滑鼠set mouse=a"設定tab的寬度(幾個空格)set tabstop=4"設定自動對其的空格數set shiftwidth=4"設定按退格時一次刪掉的空格數set softtabstop=4"設定按退格時一次刪掉的空格數set smarttab"將tab鍵自動換為空白格set expandtab"設定編碼格式set encoding=utf-8"自動判斷編碼時,依次嘗試的編碼set fileencodings=ucs-bom,utf-8,cp936,gb18030,big5"檢測檔案類型filetype on"針對不同檔案採用不同的縮排方案filetype indent on"允許外掛程式filetype plugin on"啟動智能補全filetype plugin indent on"使用Vundle的必須配置set nocompatiblefiletype offset rtp+=~/.vim/bundle/vundle/call vundle#rc()"使用Vundle來管理VundleBundle ‘gmarik/vundle‘"狀態列增強顯示Bundle ‘Lokaltog/vim-powerline‘"c/c++自動補全"Bundle ‘Valloric/YouCompleteMe‘Bundle ‘YankRing.vim‘Bundle ‘ShowPairs‘set laststatus=2set t_Co=256let g:Powerline_symbols=‘fancy‘filetype plugin indent on
vim常用配置