标签:des class code java color width
set number " 显示行号
syntax on "自动语法高亮,其实vim7.
3
版本语法默认是高亮的
" colorscheme evening "
一种好看的配色方案
colorscheme desert " 一种好看的配色方案
set shiftwidth=
4
" 设定 << 和 >> 命令移动时的宽度为
4
个字符
set tabstop=
4
" 设定 tab 长度为
4
个字符
filetype plugin indent on " 开启插件
set ignorecase " 搜索时忽略大小写
set incsearch " 即刻显示当前输入的搜索结果
set hlsearch " 高亮搜索结果
set noerrorbells " 关闭错误信息响铃
set autochdir " 自动切换当前目录为当前文件所在目录
filetype indent on "自动缩进
set autoindent shiftwidth=
4
" 修正缩进,ctrl+T或ctrl+D或者>>、<<均对应n个字符缩进
标签:des class code java color width
原文地址:http://www.cnblogs.com/fupeng/p/3785158.html