summaryrefslogtreecommitdiff
path: root/emacs/inits/25-theorems.el
diff options
context:
space:
mode:
authortslil clingman <>2021-09-29 21:40:30 -0400
committertslil clingman <>2021-09-29 21:40:30 -0400
commit51ea063e7de59a7539aa08eb4609fe9434663ebf (patch)
tree5f3661f05c4aecd1918831dc58219125d63cb0fb /emacs/inits/25-theorems.el
parent9bb7dbcd2a293b0e7e939f589cffa9d25aa37bd4 (diff)
Don't use company!
Diffstat (limited to 'emacs/inits/25-theorems.el')
-rw-r--r--emacs/inits/25-theorems.el22
1 files changed, 11 insertions, 11 deletions
diff --git a/emacs/inits/25-theorems.el b/emacs/inits/25-theorems.el
index 990f758..b87b0ed 100644
--- a/emacs/inits/25-theorems.el
+++ b/emacs/inits/25-theorems.el
@@ -1,4 +1,4 @@
-;; Time-stamp: <2020-04-04 09:04:22 (tslil@bison)>
+;; Time-stamp: <2021-09-29 21h40 EDT (bison)>
;; -----------------------------------------------------------------------------
;; Coq
@@ -127,17 +127,17 @@
:hook (coq-mode . (lambda ()
(programming-setup)
(coq-local-environment)
- (auto-fill-mode)
- (company-coq-mode))))
+ ;; (company-coq-mode)
+ (auto-fill-mode))))
-(use-package company-coq
- :after proof-general
- :ensure t
- :bind (:map company-coq-map
- ("M-." . xref-find-references)
- ("M-*" . pop-tag-mark))
- :init
- (setq company-coq-disabled-features '(hello)))
+;; (use-package company-coq
+;; :after proof-general
+;; :ensure t
+;; :bind (:map company-coq-map
+;; ("M-." . xref-find-references)
+;; ("M-*" . pop-tag-mark))
+;; :init
+;; (setq company-coq-disabled-features '(hello)))
;; -----------------------------------------------------------------------------
;; Agda