Old version(s) of vim config
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
692 B

14 years ago
  1. filetype plugin indent on
  2. syntax enable
  3. " Set defaults [:h Q_op for abbrs]
  4. set nocompatible
  5. set ai et sw=2 ts=2 sts=2 " auto indent, 2 space tabs
  6. set ch=2 so=3 ls=2 " commandline, scrolloff, laststatus
  7. set dir=/var/tmp,/tmp " dir for swapfile
  8. set nofoldenable " turn off folding
  9. set splitbelow splitright " new window placement
  10. set list listchars=tab:»·,trail
  11. set statusline=%<%f\ %h%m%r\ %y\ %=%-16(\ %l,%c-%v\ %)%P
  12. " Enable 256 color xterm support
  13. au VimEnter * if &term == 'xterm' | set t_Co=256 | endif
  14. if has("gui_running")
  15. set guifont=Monospace\ 10
  16. set cursorline
  17. set go=aegitt
  18. set co=115
  19. set lines=40
  20. endif