summary refs log tree commit diff stats
path: root/init.el
diff options
context:
space:
mode:
authorCase Duckworth2020-09-22 20:43:32 -0500
committerCase Duckworth2020-09-22 20:43:32 -0500
commit468729d20520979845451c2eaa5e3ac712e4f35b (patch)
tree5d354e07e59a8d31c71ca8f35099199fb5b954a8 /init.el
parentMerge branch 'master' of git.sr.ht:~acdw/.emacs.d into master (diff)
downloademacs-468729d20520979845451c2eaa5e3ac712e4f35b.tar.gz
emacs-468729d20520979845451c2eaa5e3ac712e4f35b.zip
Add slime & begin GNUS
Diffstat (limited to 'init.el')
-rw-r--r--init.el10
1 files changed, 10 insertions, 0 deletions
diff --git a/init.el b/init.el index bafdda2..b5d9a94 100644 --- a/init.el +++ b/init.el
@@ -750,5 +750,15 @@
750 :hook 750 :hook
751 (org-mode-hook . (lambda () (org-bullets-mode)))) 751 (org-mode-hook . (lambda () (org-bullets-mode))))
752 752
753;;;; SLIME -- for LISP
754(use-package slime
755 :init
756 (setq inferior-lisp-program (cond ((executable-find "sbcl")
757 (executable-find "sbcl")))))
758
759;;;; GNUS (TODO)
760(use-package gnus
761 :straight nil)
762
753(provide 'init) 763(provide 'init)
754;;; init.el ends here 764;;; init.el ends here