Added basic coq support

This commit is contained in:
Patrick Elliott 2018-08-14 23:21:55 +02:00
parent a824e04e92
commit fa223ceafd
No known key found for this signature in database
GPG key ID: 7CA109C3974AF5FA
2 changed files with 13 additions and 0 deletions

View file

@ -0,0 +1,9 @@
;;; lang/coq/config.el -*- lexical-binding: t; -*-
(defvar +coq-pg-loc "/home/patrl/GitHub/PG/generic")
(def-package! proof-site
:load-path +coq-pg-loc
:defer t
:mode ("\\.v\\'" . coq-mode)
:hook (coq-mode . company-coq-mode))