File: emacsen-startup

package info (click to toggle)
proofgeneral 4.5-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,172 kB
  • sloc: lisp: 33,783; makefile: 388; sh: 118; perl: 109
file content (19 lines) | stat: -rw-r--r-- 704 bytes parent folder | download
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))))