Created
December 13, 2013 16:48
-
-
Save Psli/7947246 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set guifont=Monaco:h10 " 字体 && 字号 | |
set tabstop=4 " 设置tab键的宽度 | |
set shiftwidth=4 " 换行时行间交错使用4个空格 | |
set autoindent " 自动对齐 | |
set backspace=2 " 设置退格键可用 | |
set cindent shiftwidth=4 " 自动缩进4空格 | |
set smartindent " 智能自动缩进 | |
set ai! " 设置自动缩进 | |
set nu! " 显示行号 | |
set ruler " 右下角显示光标位置的状态行 | |
set incsearch " 查找book时,当输入/b时会自动找到 | |
set hlsearch " 开启高亮显示结果 | |
set incsearch " 开启实时搜索功能 | |
set nowrapscan " 搜索到文件两端时不重新搜索 | |
set nocompatible " 关闭兼容模式 | |
set vb t_vb= " 关闭提示音 | |
set hidden " 允许在有未保存的修改时切换缓冲区 | |
set list " 显示Tab符,使用一高亮竖线代替 | |
set listchars=tab:\|\ , |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment