Enable evaluation of CL source blocks in org mode

This commit is contained in:
Camden Dixie O'Brien 2021-01-01 00:00:30 +00:00
parent 8b802b0358
commit 31a89b71a9

View File

@ -322,6 +322,15 @@ needs to be set up to install them if they aren't already.
(load (expand-file-name "~/quicklisp/slime-helper.el")) (load (expand-file-name "~/quicklisp/slime-helper.el"))
#+end_src #+end_src
And we also want to enable execution of CL source blocks in Org
mode, which we do by adding an item to [[help:org-babel-load-languages][org-babel-load-languages]].
#+begin_src emacs-lisp
(org-babel-do-load-languages
'org-babel-load-languages
'((lisp . t)))
#+end_src
*** Paredit *** Paredit
=paredit= is generally very useful for balancing parenthesis so we =paredit= is generally very useful for balancing parenthesis so we
want that turned on for all the lisps. Additionally, it's nice to have want that turned on for all the lisps. Additionally, it's nice to have