Skip to content

Commit

Permalink
Enable slime-autodoc, remove slime load-path hacks
Browse files Browse the repository at this point in the history
  • Loading branch information
purcell committed Aug 26, 2023
1 parent bc039c5 commit 1a0ca90
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions lisp/init-slime.el
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,15 @@
;;; Commentary:
;;; Code:

(require-package 'slime)
(push (expand-file-name "contrib" (file-name-directory (locate-library "slime"))) load-path)


;;; Lisp buffers

(with-eval-after-load 'slime
(setq slime-protocol-version 'ignore)
(setq slime-net-coding-system 'utf-8-unix)
(let ((features '(slime-fancy slime-repl slime-fuzzy)))
(slime-setup features)) )
(let ((features '(slime-fancy slime-repl slime-fuzzy slime-autodoc)))
(slime-setup features)))


;;; REPL
Expand Down

0 comments on commit 1a0ca90

Please sign in to comment.