Skip to content

Instantly share code, notes, and snippets.

View amintimany's full-sized avatar

Amin Timany amintimany

View GitHub Profile
@amintimany
amintimany / init.el
Last active April 28, 2016 21:24
my emacs init file for coq
(defun load-if-exists (file) "load a file if it exists"
(if (file-exists-p file) (load-file file) ()))
(load-if-exists "~/.emacs.d/ProofGeneral/generic/proof-site.el")
(custom-set-variables
;; custom-set-variables was added by Custom.
;; If you edit it by hand, you could mess it up, so be careful.
;; Your init file should contain only one such instance.
;; If there is more than one, they won't work right.
'(coq-double-hit-enable t)