码迷,mamicode.com
首页 > 系统相关 > 详细

vim配置

时间:2015-08-07 20:32:32      阅读:160      评论:0      收藏:0      [点我收藏+]

标签:

"显示行号
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

vim配置

标签:

原文地址:http://my.oschina.net/u/1433890/blog/489199

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!