dotemacs

My Emacs configuration
git clone git://git.entf.net/dotemacs
Log | Files | Refs | LICENSE

commit 5f0afb031dbdc2847d5b757b91cff69185a6a7cd
parent d6210ad7c82aee3198ded40ba69676c6253b2b3f
Author: Lukas Henkel <lh@entf.net>
Date:   Thu, 30 Sep 2021 12:37:15 +0200

Add shell to org-babel

Diffstat:
Mconfig.org | 11++++++-----
1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/config.org b/config.org @@ -299,19 +299,20 @@ Makes it easy to switch windows. (org-mode . org-indent-mode) :init (setq org-startup-indented nil - org-src-window-setup 'current-window - org-support-shift-select t) + org-src-window-setup 'current-window + org-support-shift-select t) (let ((orgdir (expand-file-name "org" lh/dir-documents))) (unless (file-exists-p orgdir) - (make-directory orgdir)) + (make-directory orgdir)) (setq org-directory orgdir - org-agenda-files orgdir)) + org-agenda-files orgdir)) :config (setq org-babel-lisp-eval-fn #'sly-eval) (org-babel-do-load-languages 'org-babel-load-languages '((awk . t) - (lisp . t)))) + (lisp . t) + (shell . t)))) #+end_src ** Roam #+begin_src emacs-lisp