Last active
April 30, 2018 13:57
-
-
Save bestony/8fbcbf18caedcebfa95edfb41fb89619 to your computer and use it in GitHub Desktop.
my vim rc
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 nocompatible | |
set t_CO=256 | |
syntax on " 语法高亮 | |
set number "显示行号 | |
set linespace=16 "行高16 | |
set cursorline "显示所在行 | |
filetype indent on "文件自动识别 | |
set noerrorbells "不咚咚响 | |
set vb t_vb= " 不咚咚响 | |
set scrolljump=5 "跳转 | |
set scrolloff=3 "跳转 | |
set laststatus=2 "显示文件状态 | |
set ruler "文字显示光标位置 | |
set autoindent " 自动缩进 | |
set expandtab "tab转换为空格 | |
set hlsearch "高亮搜索结果 | |
set incsearch "文件内部搜索结果 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment