1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
|
;; -*-emacs-lisp-*-
;;
;; Emacs startup file, e.g. /etc/emacs/site-start.d/50proofgeneral.el
;; for the Debian proofgeneral package
;;
;; Originally contributed by Nils Naumann <naumann@unileoben.ac.at>
;; Modified by Dirk Eddelbuettel <edd@debian.org>
;; Adapted for dh-make by Jim Van Zandt <jrv@debian.org>
;; Simplified for recent proofgeneral by Julien Puydt <jpuydt@debian.org>
(setq proof-assistant "coq")
(let ((proof-site-file "/usr/share/emacs/site-lisp/proofgeneral/generic/proof-site.el"))
;; If proof-site-file does not exist, the proofgeneral package must have
;; removed but not purged, and we should skip the setup.
(if (file-regular-p proof-site-file)
(load proof-site-file))))
|