vimrc
上传用户:xiao730204
上传日期:2007-01-04
资源大小:141k
文件大小:5k
源码类别:

WEB邮件程序

开发平台:

PHP

  1. "----- pridkett's .vimrc file
  2. "----- designed for vim 5.3
  3. "----- october 10th, 1998
  4. "----- all of this stuff should also be performed
  5. "----- remember to include it in your .Xdefaults file
  6. "----- it requires the pixmap slate.xpm for the menus
  7. " Vim*useSchemes: all
  8. " Vim*sgiMode: true
  9. " Vim*useEnhancedFSB: true
  10. " Vim*foreground: Wheat
  11. " Vim*background: #000020
  12. " Vim*menuBar*backgroundPixmap: ~/graphics/slate.xpm
  13. " Vim*menuForeground: Wheat
  14. " Vim*menuBackground: #2f4f4f
  15. " Vim*scrollbarWidth: 12
  16. " Vim*scrollForeground: #3f6262
  17. " Vim*scrollBackground: #2f4f4f
  18. " Vim*font: fixed
  19. "----- set up the stuff for color highlighing in an xterm
  20. "if &term =~ "xterm"
  21.  if has("terminfo")
  22.   set t_Co=16
  23.   set t_Sf=[3%p1%dm
  24.   set t_Sb=[4%p1%dm
  25.   set t_vb=
  26.  else
  27.   set t_Co=16
  28.   set t_Sf=[3%dm
  29.   set t_Sb=[4%dm
  30.   set t_vb=
  31.  endif
  32. "endif
  33. "----- only turn on syntax highlighting of there are more than one color
  34. syntax on
  35. "----- don't don't out in insert mode
  36. set noinsertmode
  37. "----- allow us to backspace before an insert
  38. set backspace=2
  39. "----- tabs are to be set at 4 spaces
  40. set tabstop=3
  41. "----- Expand tabs
  42. set expandtab
  43. "set noexpandtab
  44. set list
  45. "set listchars=tab:>-,trail: