home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1993 #2 / Image.iso / os2 / e17csh.zip / .emacs.add next >
Text File  |  1993-07-30  |  745b  |  22 lines

  1. ;; In your .emacs:
  2. ;;
  3. (require 'hilit19)        ; not intended to be autoloaded
  4. ;;
  5. (setq hilit-mode-enable-list '(not text-mode))
  6. ;;
  7. ;; Possible customizations...
  8. ;;
  9. (setq hilit-auto-highlight-maxout 70000) ; set a higher autohighlight max
  10. ;;
  11. (hilit-translate type     'RoyalBlue   ; enable type highlighting in C/C++
  12.          string    nil)         ; disable string highlighting
  13. ;;
  14. ;; if you want to change the comments in only one mode LOCALLY...
  15. ;;
  16. ;; (add-hook 'cookie-mode-hook
  17. ;;          '(lambda () (make-local-variable 'hilit-face-translation-table)
  18. ;;              (setq hilit-face-translation-table
  19. ;;                (copy-list hilit-face-translation-table))
  20. ;;              (hilit-associate 'hilit-face-translation-table
  21. ;;                       'comment 'OatmealRaisin))
  22. ;;