My .vimrc

" vim 7.x specific
 
" set to be more vim like
set nocompatible
 
" check paths for .ros alternatives
set includeexpr=substitute(v:fname,’$',’.ros’,'g’)
 
" hide buffers when they go away with :bd
set hidden
 
" set tabs
set expandtab
set tabstop=4
set shiftwidth=4
set autoindent
set cindent
 
" window management
set number
set ruler
set showmode
set laststatus=2
set history=500
set cursorline
au WinLeave * set nocursorline
au WinEnter * set cursorline
 
" search
set incsearch
set hlsearch
set smartcase
 
" colors
syntax on
colorscheme [...]