source $VIMRUNTIME/vimrc_example.vim
" source $VIMRUNTIME/mswin.vim
" behave mswin


" switch off vi compatibiliy (important!)
set nocompatible

" automatical intend
set ai

"expand tabs with spaces
set et

" how many spaces with tabstop
set ts=4

" font for graphical interface
" set gfn=Andale_Mono:h9:cANSI
set gfn=ProggySquareTT:h11:cANSI

" number of lines for window at start
set lines=53

" columns to show
set columns=120

" height of command line
set cmdheight=2

" lines visible over and under cursor
set scrolloff=3

" columns left and right of the cursor
set sidescrolloff=10

" hilight search pattern
set hls

" show line numbers
set nu

" backup mode: make backup, delete after write
set nobackup
set writebackup

" display status line always
set laststatus=2

"------------------------------------------------------------------------------
" Settings for programming
"
" show matching braces
set showmatch

"------ load colorscheme ------------------------------------------------------
colorscheme anschitech

"------------------------------------------------------------------------------
" insert time
imap <F4> <C-R>=strftime("%H:%M ")<CR>
"------------------------------------------------------------------------------
" settings for abbreviations and automatical typo correction
ab interger integer
ab adress address

