" We use a vim set nocompatible " " Colo(u)red or not colo(u)red " If you want color you should set this to true " let color = "true" " if has("syntax") if color == "true" " This will switch colors ON so ${VIMRUNTIME}/syntax/syntax.vim else " this switches colors OFF syntax off set t_Co=0 endif endif " set nu set autoindent " " thanks to lamech :-) " Make tabs 2 spaces wide, and type 2 spaces whenever I hit 'tab': set shiftwidth=2 set tabstop=2 set expandtab " " Show me tabs and trailing space chars (tabs show up as '>---' and trailing spaces as '@'): set listchars=trail:@,tab:>- set list " " ~/.vimrc ends here