Created
August 6, 2015 22:08
-
-
Save bds/9d7b4d349ae8ca0a2589 to your computer and use it in GitHub Desktop.
Minimal .vimrc
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=white ctermbg=4 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