Created
August 15, 2012 04:55
-
-
Save myanbin/3356078 to your computer and use it in GitHub Desktop.
我的终端下的Vim配置
This file contains 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
" 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