This is a Spacemacs config, I only use it for Coq + Proof General.
- Make sure you have Emacs & Coq installed
- Install Proof General
cd ~/.emacs.d/private/local
git clone [email protected]:ProofGeneral/PG.git ProofGeneral
cd ProofGeneral
make
- Install Spacemacs layer
cd ~/.emacs.d/private
git clone [email protected]:mbrcknl/spacemacs-coq coq
- Change
~/.spacemacs
and add Coq to it's layers.
(.....)
dotspacemacs-configuration-layers
'(
;; ----------------------------------------------------------------
;; Example of useful layers you may want to use right away.
;; Uncomment some layer names and press <SPC f e R> (Vim style) or
;; <M-m f e R> (Emacs style) to install them.
;; ----------------------------------------------------------------
helm
;; auto-completion
;; better-defaults
emacs-lisp
;; git
;; markdown
;; org
;; (shell :variables
;; shell-default-height 30
;; shell-default-position 'bottom)
;; spell-checking
;; syntax-checking
;; version-control
coq
)
(.....)
If you're having trouble with autocomplete
Add this to yout
.spacemacs
config