"-------------------------------------------------------------------------- " Options for Graphic version of VIM "-------------------------------------------------------------------------- "-------------------------------------------------------------------------- " Font "-------------------------------------------------------------------------- if has("win32") set guifont=ProgCleanCo:h8:cOEM elseif has("mac") set nomacatsui set antialias set guifont=Monaco:h12 else set guifont=DejaVu\ Sans\ Mono\ 9 endif "-------------------------------------------------------------------------- " Window position and size "-------------------------------------------------------------------------- if has("win32") winpos 230 130 set lines=58 set columns=130 elseif has("mac") winpos 109 46 " 22+24 for window bar set lines=50 set columns=148 else winpos 143 10 set lines=63 set columns=200 endif "-------------------------------------------------------------------------- " Preferences "-------------------------------------------------------------------------- set guioptions-=T " No Toolbar set guicursor=a:blinkon0 " No blinking cursor set guioptions-=L " No left hand scrollbars set guioptions-=m " No menu bar set t_vb= " Turn off bell flashes if !has("win32") set noshowcmd endif "-------------------------------------------------------------------------- " Printer options "-------------------------------------------------------------------------- set printoptions+=left:5pc "-------------------------------------------------------------------------- " Color scheme "-------------------------------------------------------------------------- colorscheme eclipse "--- EOF ------------------------------------------------------------------ " vim:ff=unix: