Add slime & begin GNUS

This commit is contained in:
Case Duckworth 2020-09-22 20:43:32 -05:00
parent 673c6e5ceb
commit 468729d205
1 changed files with 10 additions and 0 deletions

10
init.el
View File

@ -750,5 +750,15 @@
:hook
(org-mode-hook . (lambda () (org-bullets-mode))))
;;;; SLIME -- for LISP
(use-package slime
:init
(setq inferior-lisp-program (cond ((executable-find "sbcl")
(executable-find "sbcl")))))
;;;; GNUS (TODO)
(use-package gnus
:straight nil)
(provide 'init)
;;; init.el ends here