Skip to content

Instantly share code, notes, and snippets.

@bitdust
Last active July 21, 2018 13:31
Show Gist options
  • Save bitdust/c3d611a5433f7587bbd1 to your computer and use it in GitHub Desktop.
Save bitdust/c3d611a5433f7587bbd1 to your computer and use it in GitHub Desktop.
vimrc 从零开始
set fileencodings=utf8,cp936,gb18030,big5
syntax enable
syntax on
set tabstop=4
set smarttab
set shiftwidth=4
set expandtab
set cindent
set autoindent
" 显示行号
set number
" 与vi不兼容
set nocompatible
" 匹配括号
set showmatch
filetype plugin indent on
" 配色
set t_Co=256
colorscheme desert
" 搜索相关
set hlsearch " highlight matches
set incsearch " incremental searching
" set ignorecase " searches are case insensitive...
set smartcase " ... unless they contain at least one capital letter
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment