Skip to content

Instantly share code, notes, and snippets.

@myanbin
Created August 15, 2012 04:55
Show Gist options
  • Save myanbin/3356078 to your computer and use it in GitHub Desktop.
Save myanbin/3356078 to your computer and use it in GitHub Desktop.
我的终端下的Vim配置
" Basics {
set nocompatible
set background=dark
syntax on
" }
" General {
filetype plugin indent on
set backspace=indent,eol,start
set encoding=utf-8
set fileencoding=utf-8
set fileformats=dos,unix,mac
set incsearch
set ignorecase
" }
" Vim UI {
colorscheme molokai
set laststatus=2
set number
set numberwidth=4
set showcmd
set showmatch
set statusline=%F%m\ [%{&fenc}][%{&ff}]%=%l,%v\ %P
" }
" Text Formatting {
set cindent
set expandtab
set nowrap
set shiftwidth=4
" }
" Mapping {
" }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment