标签:
"显示行号
set number
"启用vi不兼容版本
set nocompatible
"使退格键启用
set backspace=2
"搜索高亮
set hlsearch
"设置tab键为4个空格
set tabstop=4
"每一及自动缩进的空格数
set shiftwidth=4
"自动括号补全
inoremap ( ()<ESC>i
inoremap ) <c-r>=ClosePair(‘)‘)<CR>
inoremap [ []<ESC>i
inoremap { {}<ESC>i
inoremap ] <c-r>=ClosePair(‘]‘)<CR>
inoremap } <c-r>=ClosePair(‘}‘)<CR>
function! ClosePair(char)
if getline(‘.‘)[col(‘.‘) - 1] == a:char
return "\<Right>"
else
return a:char
endif
endfunction
"换行自动缩进
set autoindent
"自动换行取消
set nowrap
"可以在buffer的任何地方使用鼠标
set mouse=a
set selection=exclusive
set selectmode=mouse,key
标签:
原文地址:http://my.oschina.net/u/1433890/blog/489199