Skip to content

Commit

Permalink
Configuration updates
Browse files Browse the repository at this point in the history
  • Loading branch information
jwiegley committed Feb 15, 2016
1 parent 33d8e8c commit a107667
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 7 deletions.
7 changes: 6 additions & 1 deletion gnus-settings.el
Expand Up @@ -136,6 +136,10 @@ BAE Systems"))))
(to-address . "sw-dev@lists.riscv.org")
(to-list . "sw-dev@lists.riscv.org")
(list-identifier . "\\[riscv-sw\\]"))
("list\\.coq\\.fiat$ "
(to-address . "fiat@lists.csail.mit.edu")
(to-list . "fiat@lists.csail.mit.edu")
(list-identifier . "\\[Fiat\\]"))
("list\\.gsoc\\.mentors$"
(to-address . "google-summer-of-code-mentors-list@googlegroups.com")
(to-list . "google-summer-of-code-mentors-list@googlegroups.com")
Expand Down Expand Up @@ -191,7 +195,8 @@ BAE Systems"))))
(gcc-self . t))
("list\\.bahai\\.tarjuman"
(to-address . "tarjuman@bahai-library.com")
(to-list . "tarjuman@bahai-library.com"))
(to-list . "tarjuman@bahai-library.com")
(list-identifier . "\\[tj\\]"))
("list\\.emacs\\.devel$"
(to-address . "emacs-devel@gnu.org")
(to-list . "emacs-devel@gnu.org")
Expand Down
11 changes: 7 additions & 4 deletions init.el
Expand Up @@ -2939,7 +2939,8 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."
:bind ("C-c e m" . macrostep-expand))

(use-package magit
:load-path "site-lisp/magit/lisp"
:load-path ("site-lisp/magit/lisp"
"site-lisp/with-editor")
:bind (("C-x g" . magit-status)
("C-x G" . magit-status-with-prefix))
:preface
Expand Down Expand Up @@ -3340,15 +3341,16 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."

:config
(use-package company-coq
:disabled t
:load-path "site-lisp/company-coq"
:commands company-coq-mode
:preface
(use-package company-math
:load-path "site-lisp/company-math"
:defer t
:preface
(use-package math-symbols-lists
:load-path "site-lisp/math-symbol-lists"))
:load-path "site-lisp/math-symbol-lists"
:defer t))
:config
(unbind-key "M-<return>" company-coq-map))

Expand All @@ -3364,7 +3366,7 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."
(holes-mode -1)
(whitespace-mode 1)
;; (ggtags-mode 1)
;; (set-input-method "Agda")
(set-input-method "Agda")
;; (proof-unicode-tokens-enable 1)
(add-hook 'proof-shell-extend-queue-hook
(lambda ()
Expand All @@ -3381,6 +3383,7 @@ Inspired by Erik Naggum's `recursive-edit-with-single-window'."
(interactive)
(proof-layout-windows)
(proof-prf)) coq-mode-map)
(bind-key "C-c C-a C-r" #'coq-SearchRewrite coq-mode-map)
(bind-key "C-c C-a C-s" #'coq-SearchConstant coq-mode-map)
(unbind-key "C-c h" coq-mode-map))

Expand Down
2 changes: 1 addition & 1 deletion lisp/use-package
Submodule use-package updated 3 files
+2 −7 README.md
+4 −4 bind-key.el
+42 −14 use-package.el
3 changes: 3 additions & 0 deletions settings.el
Expand Up @@ -287,6 +287,9 @@
("^ \\*Minibuf-.*\\*$" "^\\*Summary" "^\\*Article" "^#")))
'(clean-buffer-list-kill-regexps (quote (".*")))
'(column-number-mode t)
'(company-coq-disabled-features
(quote
(hello unicode-math-backend refman-tactic-abbrevs-backend refman-vernac-abbrevs-backend dynamic-symbols-backend)))
'(company-coq-prettify-symbols-alist
(quote
(("|-" . 8866)
Expand Down
2 changes: 1 addition & 1 deletion site-lisp/company-coq
Submodule company-coq updated 416 files

0 comments on commit a107667

Please sign in to comment.