set nocompatible " source $VIMRUNTIME/vimrc_example.vim " source $VIMRUNTIME/mswin.vim " behave mswin map #1 0vwhxij map #2 0vwhxij map #3 0vwhxij map #4 0vwhxij set shiftwidth=4 " Use indents of 4 spaces set expandtab " Tabs are spaces set tabstop=4 " An indentation every four columns set softtabstop=4 " Let backspace delete indent set ai set showmatch " ic -> ignorecase set ic set incsearch set showmatch set hlsearch set autochdir " nunmap " http://vim.wikia.com/wiki/Increasing_or_decreasing_numbers "colorscheme elflord colorscheme desert syntax on filetype on filetype plugin on filetype indent on " set relativenumber set number set undofile " Uncomment the following to have Vim jump to the last position when reopening a file au BufReadPost * if line("'\"") > 1 && line("'\"") <= line("$") | exe "normal! g'\"" | endif