~ TJM /.vimrc

A simple vim configuration file pieced together from others I have found.
"
" ~/.vimrc
"

set laststatus=2
set statusline=%<%f%h%m%r%w%y%=%l/%L,%c\ %P\ \|\ %n
set ruler
set nobackup
set noerrorbells
set hidden
set wrapscan
set showcmd
set report=0
set nottyfast
set nocompatible
set modeline
set modelines=3
"let color = "true"
let color = "false"
if has("syntax")
    if color == "true"
so ${VIMRUNTIME}/syntax/syntax.vim
    else
" this switches colors OFF
syntax off
set t_Co=0
    endif
endif


"
" eof
"