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.

43 lines
1.2 KiB

14 years ago
14 years ago
14 years ago
  1. filetype off
  2. call pathogen#runtime_append_all_bundles()
  3. filetype plugin indent on
  4. syntax enable
  5. " Set defaults [:h Q_op for abbrs]
  6. set nocompatible
  7. set ai et sw=2 ts=2 sts=2 " auto indent, 2 space tabs
  8. set ch=2 so=3 ls=2 " commandline, scrolloff, laststatus
  9. set dir=/var/tmp,/tmp " dir for swapfile
  10. set nofoldenable " turn off folding
  11. set splitbelow splitright " new window placement
  12. set list listchars=tab:»·,trail
  13. set statusline=%<%f\ %h%m%r\ %y\ %{fugitive#statusline()}%=%-16(\ %l,%c-%v\ %)%P
  14. " Enable 256 color xterm support
  15. au VimEnter * if &term == 'xterm' | set t_Co=256 | endif
  16. colorscheme wombat256mod
  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
  24. " Settings for tpope's surround plugin
  25. let g:surround_45 = "<% \r -%>"
  26. let g:surround_61 = "<%= \r %>"
  27. autocmd FileType php let b:surround_45 = "<?php \r ?>"
  28. " Settings for rails plugin
  29. let g:rails_default_file='config/database.yml'
  30. autocmd User Rails silent! Rlcd
  31. " NERDTree settings
  32. map <silent> <M-d> :execute 'NERDTreeToggle'<CR>
  33. " Session plugin settings
  34. let g:session_autosave = 1
  35. let g:session_autoload = 1