From 7e1e85bbffcaf6267eeac58f50981b962f41b01e Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Sun, 13 Oct 2019 12:54:26 +0200 Subject: [PATCH] SLIME: Use slime-mrepl. --- .emacs.d/lisp/init-lisp.el | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.emacs.d/lisp/init-lisp.el b/.emacs.d/lisp/init-lisp.el index d5d7fd6c..633e608e 100644 --- a/.emacs.d/lisp/init-lisp.el +++ b/.emacs.d/lisp/init-lisp.el @@ -104,18 +104,20 @@ (ecl ("ecl")))) (let ((slime-extra '(slime-fancy ;; slime-banner + slime-mrepl slime-xref-browser ;; slime-highlight-edits ; A bit slow... slime-sprof slime-quicklisp slime-asdf slime-indentation))) - ;; slime-company should not be required, see - ;; https://github.com/anwyn/slime-company/issues/11. ;; TODO: Fix slime-repl-ansi-color. ;; (when (require 'slime-repl-ansi-color nil t) ;; (add-to-list 'slime-extra 'slime-repl-ansi-color) ;; (setq slime-repl-ansi-color t)) + + ;; slime-company should not be `require'd, see + ;; https://github.com/anwyn/slime-company/issues/11. (when (ignore-errors (find-library-name "slime-company")) (add-to-list 'slime-extra 'slime-company)) (slime-setup slime-extra)