home *** CD-ROM | disk | FTP | other *** search
/ chilidog.highland.cc.ks.us / chilidog.highland.cc.ks.us.zip / chilidog.highland.cc.ks.us / backup / bradford.20120305.etc.tar.gz / bradford.20120305.etc.tar / etc / skel / .emacs < prev    next >
Lisp/Scheme  |  2002-01-25  |  2KB  |  46 lines

  1. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  2. ;;; File name: ` ~/.emacs '
  3. ;;; ---------------------
  4. ;;;
  5. ;;; If you need your own personal ~/.emacs
  6. ;;; please make a copy of this file
  7. ;;; an placein your changes and/or extension.
  8. ;;;
  9. ;;; Copyright (c) 1997-2002 SuSE Gmbh Nuernberg, Germany.
  10. ;;;
  11. ;;; Author: Werner Fink, <feedback@suse.de> 1997,98,99,2002
  12. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  13. ;;;
  14. ;;; Test of Emacs derivates
  15. ;;; -----------------------
  16. (if (string-match "XEmacs\\|Lucid" emacs-version)
  17.   ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  18.   ;;; XEmacs
  19.   ;;; ------
  20.   ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  21.   (progn
  22.      (if (file-readable-p "~/.xemacs/init.el")
  23.         (load "~/.xemacs/init.el" nil t))
  24.   )
  25.   ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  26.   ;;; GNU-Emacs
  27.   ;;; ---------
  28.   ;;; load ~/.gnu-emacs or, if not exists /etc/skel/.gnu-emacs
  29.   ;;; For a description and the settings see /etc/skel/.gnu-emacs
  30.   ;;;   ... for your private ~/.gnu-emacs your are on your one.
  31.   ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  32.   (if (file-readable-p "~/.gnu-emacs")
  33.       (load "~/.gnu-emacs" nil t)
  34.     (if (file-readable-p "/etc/skel/.gnu-emacs")
  35.     (load "/etc/skel/.gnu-emacs" nil t)))
  36.  
  37.   ;; Custum Settings
  38.   ;; ===============
  39.   ;; To avoid any trouble with the customization system of GNU emacs
  40.   ;; we set the default file ~/.gnu-emacs-custom
  41.   (setq custom-file "~/.gnu-emacs-custom")
  42.   (load "~/.gnu-emacs-custom" t t)
  43. ;;;
  44. )
  45. ;;;
  46.