Created
April 12, 2014 04:24
-
-
Save xxuejie/10518717 to your computer and use it in GitHub Desktop.
Minimal vimrc
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
set nocompatible | |
syntax on | |
filetype plugin indent on | |
set background=dark | |
colorscheme solarized | |
set ffs=mac,unix,dos | |
set encoding=utf-8 | |
set fileencoding=utf-8 | |
set backspace=indent,eol,start | |
set expandtab | |
set shiftwidth=2 | |
set tabstop=2 | |
set autoindent | |
set paste | |
set ruler | |
set ignorecase | |
set smartcase | |
set hlsearch | |
set incsearch | |
set magic | |
set showmatch |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment