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.

26 lines
773 B

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