Merge branch 'bandresen-overseer'

* bandresen-overseer:
  Add: lang/emacs-lisp: overseer initial commit
This commit is contained in:
Henrik Lissner 2017-07-17 11:46:42 +02:00
commit 47a04ca076
2 changed files with 8 additions and 1 deletions

View file

@ -74,6 +74,7 @@
(setq inferior-lisp-program "clisp") (setq inferior-lisp-program "clisp")
(require 'slime-fuzzy)) (require 'slime-fuzzy))
(def-package! macrostep (def-package! macrostep
:commands macrostep-expand :commands macrostep-expand
:config :config
@ -106,6 +107,11 @@
(add-hook 'flycheck-mode-hook #'flycheck-cask-setup nil t))) (add-hook 'flycheck-mode-hook #'flycheck-cask-setup nil t)))
(def-package! overseer
:commands overseer-test
:init (set! :popup "*overseer*" :size 12))
;; ;;
;; ;;
;; ;;

View file

@ -3,8 +3,9 @@
(package! auto-compile) (package! auto-compile)
(package! highlight-quoted) (package! highlight-quoted)
(package! slime)
(package! macrostep) (package! macrostep)
(package! overseer)
(package! slime)
(when (featurep! :feature syntax-checker) (when (featurep! :feature syntax-checker)
(package! flycheck-cask)) (package! flycheck-cask))