您的位置:首页 > 其它

vim配置

2016-02-01 11:31 183 查看

vim配置

第一阶段,便于编写代码

set nu    "show line
syntax on "highlight syntax
set completeopt=preview,menu
set cursorline " highlight current line
set autoindent " auto indent
set tabstop=4  " set tab indent as 4 ascii
set softtabstop=4 " set tab indent as 4 ascii
set expandtab  " use space to replace tab
set showmatch  " match () or []
set smartindent " auto indent for c?


先用这些吧。感觉挺合适的。
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: