Created
August 20, 2010 19:58
-
-
Save bds/541015 to your computer and use it in GitHub Desktop.
Basic .vimrc file
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 " We are using Vim | |
syntax on | |
set colorcolumn=80 | |
set ruler | |
hi StatusLine ctermfg=0 ctermbg=3 cterm=bold " Window highlighting | |
hi StatusLineNC ctermfg=0 ctermbg=238 cterm=none | |
hi Folded ctermfg=244 ctermbg=0 cterm=none " Code folding highlight | |
set softtabstop=2 | |
set tabstop=2 | |
set shiftwidth=2 | |
set expandtab | |
set history=100 | |
set showmatch | |
set foldmethod=indent | |
set foldnestmax=10 | |
set nofoldenable | |
set foldlevel=1 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment