Wednesday 22 September 2010

vimrc

general vimrc file

" indent
set autoindent
set smartindent

" spaces instead of tab
set tabstop=4
set shiftwidth=4

" briefly jumps to the matching brace/bracket
set showmatch

" flashes the screen when the command does not work instead of beep
set vb t_vb=

set ruler " show the cursor position all the time
set scrolloff=3 " keep 3 lines when scrolling
syntax on " syntax highlighing

" font and color
set guifont=Courier_New
colorscheme koehler

" turn backup off
set nobackup

" line numbers
:set nu

No comments:

Post a Comment