doomemacs/modules/lang/coq/config.el

13 lines
412 B
EmacsLisp
Raw Normal View History

2018-08-27 12:57:07 +02:00
;;; lang/coq/config.el -*- lexical-binding: t; -*-
;; `coq'
(setq proof-electric-terminator-enable t)
2018-08-27 15:35:18 +02:00
2018-08-27 12:57:07 +02:00
(after! company-coq
2018-08-27 13:57:00 +02:00
(set-lookup-handlers! 'company-coq-mode
:definition #'company-coq-jump-to-definition
2018-08-27 14:11:14 +02:00
:references #'company-coq-grep-symbol
2018-08-27 13:57:00 +02:00
:documentation #'company-coq-doc)
2018-08-27 12:57:07 +02:00
(when (not (featurep! :completion company))
(setq company-coq-disabled-features '(company company-defaults))))