我的vim配置

不用说,vim配置,我的配置比较简单,就是为了考场上能很快打出来,大神勿喷。

可能是我太弱了吧,用惯了dev,没有括自动补全就难受,于是就加上了。

syntax on
filetype on
color desert
set rular
set number
set corsorline
set tabstop=4
set softtabstop=4
set shiftwidth=4
set autoindent
set cindent
set smartindent
set history=1000
set showmatch
:inoremap ( ()<ESC>i
:inoremap [ []<ESC>i
:inoremap { {}<ESC>i<ENTER><ESC>k$a
:inoremap ' ''<ESC>i
:inoremap " ""<ESC>i

猜你喜欢

转载自www.cnblogs.com/shanxieng/p/9313735.html