Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove manual path config for local proof-general. #18

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 0 additions & 3 deletions config.el
Expand Up @@ -9,6 +9,3 @@
;;
;;; License: GPLv3

(defvar proof-general-path "/usr/local/share/emacs/site-lisp/proof-general/generic/proof-site"
"The path to proof general")

3 changes: 1 addition & 2 deletions packages.el
Expand Up @@ -14,7 +14,7 @@
(setq coq-packages
'(
company-coq
(proof-general :location local)
proof-general
))

;; List of packages to exclude.
Expand Down Expand Up @@ -55,7 +55,6 @@
"Initialize Proof General."
;; Setup from Proof General README, using a path from the configuration. Proof General
;; lazily loads from proof-site, so there's no need to use-package it.
(load proof-general-path)
(spacemacs/set-leader-keys-for-major-mode 'coq-mode
"n" 'proof-assert-next-command-interactive
"u" 'proof-undo-last-successful-command
Expand Down