" Sam Inverso's vimrc file " This is a modified version of Ken Shan's version 4.6 " Works for 4.6 and newer " ----Basic settings--- set autoindent " Copy indent from previous line set backspace=2 " Backspace all the way to wherever it takes set cpoptions=aceF% " Left out A, B and s forom the defaults set expandtab " Uses spaces instead of the tab character set helpheight=15 " 15 lines of help is enough set incsearch " Incremental Search set keywordprg=man\ -a " Display all man entries for 'K' lookup set laststatus=2 " Always show status line "set fileformat=unix " Do not append an extra set nocompatible " Be incompatible with vi set ruler " Enable ruler on status line set scrolloff=2 " Keep 2 lines above and below the cursor set shiftwidth=4 " Indent by four columns ata time set shortmess=ao " Shorter status messages set showbreak=+++ " Precede continued screen lines set showmatch " Show matching deliminaters set showmode " Show current input mode in status line set sidescroll=8 " Horizontal scrolling 8 columns at a time set smartcase " Ignore ignorecase for uppercase letters in patterns set tabstop=4 " Number of spaces a tab is set splitbelow " Split windows below current window set ttyscroll=5 " Scroll at most 5 lines at a time set whichwrap=<,>,[,] " Left/right arrow keys wrap set winheight=4 " At least 4 lines for current window set tags=./tags.tags,../tags " Tags file search path set path=. " Path to searchi set vb t_vb= " Turn off visual and audio error bell syntax on