[go: up one dir, main page]

Menu

[r37]: / etc / emacs / emacs  Maximize  Restore  History

Download this file

88 lines (73 with data), 2.5 kB

;;
;; .emacs for ctafconf in ~/.ctafconf/etc/emacs/emacs
;;
;; Made by Cedric GESTES
;; Login   <gestes_c@epita.fr>
;;
;; Started on  Sat Oct 16 12:48:04 1993 Cedric GESTES
;;
;;CTAFCONF

;;SOURCES:
;;http://wcube.epita.fr/~eole
;;http://www.happycoder.org
;;http://cedet.sf.net
;;http://ecb.sf.net
;;http://www.dotemacs.de
;;http://www.boblycat.org/~malc/.emacs
;;http://www.emacswiki.org

;;;PATH and .el file
(setq load-path (nconc '( "~/.ctafconf/etc/emacs/site-lisp/"
			  "~/.ctafconf/etc/emacs/site-lisp/ilisp/"
			  "~/.ctafconf/etc/emacs/site-lisp/ecb/"
			  "~/.ctafconf/etc/emacs/site-lisp/tuareg/"
			  "~/.ctafconf/etc/emacs/site-lisp/sieve/") load-path))


(load-file "~/.ctafconf/etc/emacs/site-lisp/safe-load.el")

;;startup message
(safe-load "~/.ctafconf/etc/emacs/startup.emacs")
;;mode (ada,tuareg, ido, autotemplate,..)
(safe-load "~/.ctafconf/etc/emacs/mode.emacs")
;;usefull functions
(safe-load "~/.ctafconf/etc/emacs/functions.emacs")
;;screensaver,
(safe-load "~/.ctafconf/etc/emacs/misc.emacs")
;;cparse, cpcomment, cwarn, cedet, ecb, semantic
(safe-load "~/.ctafconf/etc/emacs/prog.emacs")
;;emacs settings
(safe-load "~/.ctafconf/etc/emacs/settings.emacs")
;;keys bindings
(safe-load "~/.ctafconf/etc/emacs/bindings.emacs")
;;menu
(safe-load "~/.ctafconf/etc/emacs/menu.emacs")
;;test
;;(safe-load "~/.ctafconf/etc/emacs/test.emacs")



;;personal settings
(if (file-exists-p "~/.myemacs")
    (safe-load "~/.myemacs"))
(if (file-exists-p "~/.ctafconf/perso/.emacs.mine")
    (safe-load "~/.ctafconf/perso/.emacs.mine"))

;;print debug info
(safe-load-check)



(custom-set-faces
  ;; custom-set-faces was added by Custom -- don't edit or cut/paste it!
  ;; Your init file should contain only one such instance.
;;		:foreground "thistle3"
 '(default ((t (:background "black"
		:foreground "white"
		:inverse-video nil
		:box nil
		:strike-through nil
		:overline nil
		:underline nil
		:slant normal
		:weight normal
		:height 125
		:width normal
		:family "misc-fixed")))))

(custom-set-variables
  ;; custom-set-variables was added by Custom -- don't edit or cut/paste it!
  ;; Your init file should contain only one such instance.
 '(ecb-options-version "2.32")
 '(speedbar-frame-parameters (quote ((minibuffer) (width . 20)
                                     (border-width . 0)
                                     (menu-bar-lines . 0)
                                     (tool-bar-lines . 0) (unsplittable . t) (set-background-color "black")))))