Skip to content

Instantly share code, notes, and snippets.

@jroesch
Created April 29, 2014 18:35
Show Gist options
  • Select an option

  • Save jroesch/11408384 to your computer and use it in GitHub Desktop.

Select an option

Save jroesch/11408384 to your computer and use it in GitHub Desktop.
.emacs.el (for Vineeth)
;; -*- coding: utf-8 -*-
(require 'package)
(setq package-archives '(("gnu" . "http://elpa.gnu.org/packages/")
("marmalade" . "http://marmalade-repo.org/packages/")
("melpa" . "http://melpa.milkbox.net/packages/")))
(package-initialize)
; Remove the pesk + ugly toolbar
; (tool-bar-mode 0)
; Evil Setup
(evil-mode 1)
; Coq Setup
(setq coq-prog-name "/usr/local/bin/coqtop")
(setq auto-mode-alist (cons '("\.v$" . coq-mode) auto-mode-alist))
(autoload 'coq-mode "coq" "Major mode for editing Coq vernacular." t)
; Proof General
(load-file "/Users/jroesch/.emacs.d/proof-general/generic/proof-site.el")
; Setup for CPDT
; (custom-set-variables
; '(coq-prog-args '("-I" "DIR/src")))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment