vim优化--自动缩进+行号

自动缩进,自动补全括号,显示行号等

 

vim /etc/vimrc

set nu

if has( "autocmd" )

filetype plugin indent on

autocmd FileType make set tabstop=8 shiftwidth=8 softtabstop=0 noexpandt ab

endif

set tabstop=4

set shiftwidth=4

set softtabstop=4

set expandtab

inoremap ( ()<ESC>i

inoremap [ []<ESC>i

inoremap { {}<ESC>i

inoremap < <><ESC>i

posted @ 2022-11-01 10:47  yeahzxw  阅读(38)  评论(0)    收藏  举报